mirror of
https://github.com/sourcebot-dev/sourcebot.git
synced 2025-12-18 07:15:21 +00:00
7 lines
207 B
TypeScript
7 lines
207 B
TypeScript
|
|
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";
|