mirror of
https://github.com/exogen/t2-mapper.git
synced 2026-01-20 04:35:05 +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;
|