File: lexer.d.ts

package info (click to toggle)
node-cjs-module-lexer 2.1.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 416 kB
  • sloc: javascript: 2,297; ansic: 1,551; makefile: 31
file content (8 lines) | stat: -rwxr-xr-x 234 bytes parent folder | download
1
2
3
4
5
6
7
8
export interface Exports {
  exports: string[];
  reexports: string[];
}

export declare function parse(source: string, name?: string): Exports;
export declare function init(): Promise<void>;
export declare function initSync(): void;