mirror of
https://github.com/exogen/t2-mapper.git
synced 2026-01-19 20:25:01 +00:00
9 lines
213 B
TypeScript
9 lines
213 B
TypeScript
import type { Program } from "@/src/torqueScript/ast";
|
|
|
|
export interface ParseOptions {
|
|
grammarSource?: string;
|
|
startRule?: "Program";
|
|
}
|
|
|
|
export function parse(input: string, options?: ParseOptions): Program;
|