UNPKG

447 BTypeScriptView Raw
1import { Stmt } from "./parser";
2import * as PP from "./preprocessor";
3import * as BrsTypes from "./brsTypes";
4export { BrsTypes as types };
5export { PP as preprocessor };
6import { ManifestValue } from "./preprocessor/Manifest";
7import { ExecutionOptions } from "./interpreter";
8export declare function getLexerParserFn(manifest: Map<string, ManifestValue>, options: Partial<ExecutionOptions>): (filenames: string[]) => Promise<Stmt.Statement[]>;