UNPKG

@igorivaniuk/tlb-parser

Version:

Parse TLB syntax into TypeScript objects

5 lines (4 loc) 208 B
import type { Grammar } from 'ohm-js'; import type { Program } from './ast/nodes'; export declare function buildGrammar(): Grammar; export declare function buildAST(input: string, grammar: Grammar): Program;