sourcebot/packages/queryLanguage/src/index.ts

7 lines
207 B
TypeScript
Raw Normal View History

import { parser } from "./parser";
type Tree = ReturnType<typeof parser.parse>;
type SyntaxNode = Tree['topNode'];
export type { Tree, SyntaxNode };
export * from "./parser";
export * from "./parser.terms";