-
Notifications
You must be signed in to change notification settings - Fork 108
Expand file tree
/
Copy pathindex.ts
More file actions
36 lines (29 loc) · 1.03 KB
/
index.ts
File metadata and controls
36 lines (29 loc) · 1.03 KB
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
26
27
28
29
30
31
32
33
34
35
36
export { MySQL, FlinkSQL, SparkSQL, HiveSQL, PostgreSQL, TrinoSQL, ImpalaSQL } from './parser';
export {
MySqlParserListener,
MySqlParserVisitor,
FlinkSqlParserListener,
FlinkSqlParserVisitor,
SparkSqlParserListener,
SparkSqlParserVisitor,
HiveSqlParserListener,
HiveSqlParserVisitor,
PostgreSqlParserListener,
PostgreSqlParserVisitor,
TrinoSqlListener,
TrinoSqlVisitor,
ImpalaSqlParserListener,
ImpalaSqlParserVisitor,
} from './lib';
export { EntityContextType } from './parser/common/types';
export { StmtContextType } from './parser/common/entityCollector';
export type { CaretPosition, Suggestions, SyntaxSuggestion } from './parser/common/types';
export type { WordRange, TextSlice } from './parser/common/textAndWord';
export type { SyntaxError, ParseError, ErrorListener } from './parser/common/parseErrorListener';
export type {
StmtContext,
EntityContext,
CommonEntityContext,
ColumnEntityContext,
FuncEntityContext,
} from './parser/common/entityCollector';