PR-URL: https://github.com/nodejs/node/pull/61456 Reviewed-By: Guy Bedford <guybedford@gmail.com> Reviewed-By: Daniel Lemire <daniel@lemire.me> Reviewed-By: Richard Lau <richard.lau@ibm.com>
5 lines
171 B
TypeScript
5 lines
171 B
TypeScript
export type CJSLexerParseResult = [exports: Set<string>, reexports: string[]];
|
|
|
|
export interface CJSLexerBinding {
|
|
parse(source?: string | null): CJSLexerParseResult;
|
|
}
|