lexer.d.ts 199 B

1234567
  1. export interface Exports {
  2. exports: string[];
  3. reexports: string[];
  4. }
  5. export declare function parse(source: string, name?: string): Exports;
  6. export declare function init(): Promise<void>;