From c5da167592db65adbd4eec778d34bf2cfa122c54 Mon Sep 17 00:00:00 2001 From: liuxy0551 Date: Thu, 14 Nov 2024 16:04:15 +0800 Subject: [PATCH] fix: #371 export EntityContext types --- src/index.ts | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 315aa589c..75cef682d 100644 --- a/src/index.ts +++ b/src/index.ts @@ -27,4 +27,10 @@ export type { WordRange, TextSlice } from './parser/common/textAndWord'; export type { SyntaxError, ParseError, ErrorListener } from './parser/common/parseErrorListener'; -export type { StmtContext, EntityContext } from './parser/common/entityCollector'; +export type { + StmtContext, + EntityContext, + CommonEntityContext, + ColumnEntityContext, + FuncEntityContext, +} from './parser/common/entityCollector';