blob: ba6576916f9a5c3b33dae139c2dcb4018431549d (
plain)
1
2
3
4
5
6
7
8
|
import { Options } from './parser';
import * as ESTree from './estree';
declare const version: string;
export declare function parseScript(source: string, options?: Options): ESTree.Program;
export declare function parseModule(source: string, options?: Options): ESTree.Program;
export declare function parse(source: string, options?: Options): ESTree.Program;
export { Options, ESTree, version };
//# sourceMappingURL=meriyah.d.ts.map
|