-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathindex.ts
More file actions
25 lines (25 loc) · 883 Bytes
/
index.ts
File metadata and controls
25 lines (25 loc) · 883 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// api-extractor not support yet
//export * from './interpreter/index';
//export * as utils from './interpreter/util';
//export * as values from './interpreter/value';
import { Interpreter, std } from './interpreter/index.js';
import { Scope } from './interpreter/scope.js';
import * as utils from './interpreter/util.js';
import * as values from './interpreter/value.js';
import { Parser } from './parser/index.js';
import { AiSON } from './parser/aison.js';
import * as errors from './error.js';
import * as Ast from './node.js';
import { AISCRIPT_VERSION } from './constants.js';
import type { ParserPlugin, PluginType } from './parser/index.js';
export { Interpreter, std };
export { Scope };
export { utils };
export { values };
export { Parser };
export { ParserPlugin };
export { PluginType };
export { AiSON };
export { errors };
export { Ast };
export { AISCRIPT_VERSION };