Skip to content

Commit ab8b671

Browse files
committed
review import
1 parent 1ae3e4b commit ab8b671

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

index.js

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,34 @@
11
module.exports = {
22
/**
3-
* @type {typeof import('./lib/woqlClient').WOQLClient}
3+
* @type {typeof import('./lib/woqlClient')}
44
*/
55
WOQLClient: require('./lib/woqlClient'),
66
/**
7-
* @type {typeof import('./lib/utils').UTILS}
7+
* @type {import('./lib/utils')}
88
*/
99
UTILS: require('./lib/utils'),
1010
/**
11-
* @type {typeof import('./lib/woqlView').View}
11+
* @type {import('./lib/woqlView')}
1212
*/
1313
View: require('./lib/viewer/woqlView'),
1414
/**
15-
* @type {typeof import('./lib/woql').WOQL}
15+
* @type {import('./lib/woql')}
1616
*/
1717
WOQL: require('./lib/woql'),
1818
/**
19-
* @type {typeof import('./lib/viewer/woqlResult').WOQLResult}
19+
* @type {import('./lib/viewer/woqlResult')}
2020
*/
2121
WOQLResult: require('./lib/viewer/woqlResult'),
2222
/**
23-
* @type {typeof import('./lib/viewer/woqlTable').WOQLTable}
23+
* @type {typeof import('./lib/viewer/woqlTable')}
2424
*/
2525
WOQLTable: require('./lib/viewer/woqlTable'),
2626
/**
27-
* @type {typeof import('./lib/viewer/woqlGraph').WOQLGraph}
27+
* @type {typeof import('./lib/viewer/woqlGraph')}
2828
*/
2929
WOQLGraph: require('./lib/viewer/woqlGraph'),
3030
/**
31-
* @type {typeof import('./lib/axiosInstance').axiosInstance}
31+
* @type {typeof import('./lib/axiosInstance')}
3232
*/
3333
axiosInstance: require('./lib/axiosInstance'),
3434
}

0 commit comments

Comments
 (0)