|
1 | 1 | /* eslint-disable global-require */
|
2 |
| -// const { Vars } = require('./lib/query/woqlDoc'); |
| 2 | +const Vars = require('./lib/query/woqlDoc'); |
| 3 | +const WOQLClient = require('./lib/woqlClient'); |
| 4 | +const UTILS = require('./lib/utils'); |
| 5 | +const View = require('./lib/viewer/woqlView'); |
| 6 | +const WOQL = require('./lib/woql'); |
| 7 | +const WOQLResult = require('./lib/viewer/woqlResult'); |
| 8 | +const WOQLTable = require('./lib/viewer/woqlTable'); |
| 9 | +const WOQLGraph = require('./lib/viewer/woqlGraph'); |
| 10 | +const axiosInstance = require('./lib/axiosInstance'); |
| 11 | +const AccessControl = require('./lib/accessControl'); |
3 | 12 |
|
4 | 13 | module.exports = {
|
5 |
| - /** |
6 |
| - * @type {typeof import('./lib/query/woqlDoc')} |
7 |
| - */ |
8 |
| - Vars: require('./lib/query/woqlDoc'), |
9 |
| - /** |
10 |
| - * @type {typeof import('./lib/woqlClient')} |
11 |
| - */ |
12 |
| - WOQLClient: require('./lib/woqlClient'), |
13 |
| - /** |
14 |
| - * @type {typeof import('./lib/utils')} |
15 |
| - */ |
16 |
| - UTILS: require('./lib/utils'), |
17 |
| - /** |
18 |
| - * @type {typeof import('./lib/viewer/woqlView')} |
19 |
| - */ |
20 |
| - View: require('./lib/viewer/woqlView'), |
21 |
| - /** |
22 |
| - * @type {typeof import('./lib/woql')} |
23 |
| - */ |
24 |
| - WOQL: require('./lib/woql'), |
25 |
| - /** |
26 |
| - * @type {typeof import('./lib/viewer/woqlResult')} |
27 |
| - */ |
28 |
| - WOQLResult: require('./lib/viewer/woqlResult'), |
29 |
| - /** |
30 |
| - * @type {typeof import('./lib/viewer/woqlTable')} |
31 |
| - */ |
32 |
| - WOQLTable: require('./lib/viewer/woqlTable'), |
33 |
| - /** |
34 |
| - * @type {typeof import('./lib/viewer/woqlGraph')} |
35 |
| - */ |
36 |
| - WOQLGraph: require('./lib/viewer/woqlGraph'), |
37 |
| - /** |
38 |
| - * @type {typeof import('./lib/axiosInstance')} |
39 |
| - */ |
40 |
| - axiosInstance: require('./lib/axiosInstance'), |
41 |
| - /** |
42 |
| - * @type {typeof import('./lib/accessControl')} |
43 |
| - */ |
44 |
| - AccessControl: require('./lib/accessControl'), |
| 14 | + Vars, |
| 15 | + WOQLClient, |
| 16 | + UTILS, |
| 17 | + View, |
| 18 | + WOQL, |
| 19 | + WOQLResult, |
| 20 | + WOQLTable, |
| 21 | + WOQLGraph, |
| 22 | + axiosInstance, |
| 23 | + AccessControl, |
45 | 24 | };
|
0 commit comments