You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
298 B
TypeScript
9 lines
298 B
TypeScript
|
3 months ago
|
/// <reference types="node" preserve="true" />
|
||
|
|
export declare const CWD: string;
|
||
|
|
export interface CjsRequire extends NodeJS.Require {
|
||
|
|
<T>(id: string): T;
|
||
|
|
}
|
||
|
|
export declare const cjsRequire: CjsRequire;
|
||
|
|
export declare const EVAL_FILENAMES: Set<string>;
|
||
|
|
export declare const EXTENSIONS: string[];
|