UNPKG

556 BTypeScriptView Raw
1/// <reference types="node" />
2/// <reference types="mocha" />
3export declare const nodeGlobals: {
4 Buffer: typeof Buffer;
5 __dirname: string;
6 __filename: string;
7 clearImmediate: typeof clearImmediate;
8 clearInterval: typeof clearInterval;
9 clearTimeout: typeof clearTimeout;
10 console: Console;
11 exports: any;
12 global: NodeJS.Global;
13 module: NodeModule;
14 process: NodeJS.Process;
15 require: NodeRequire;
16 setImmediate: typeof setImmediate;
17 setInterval: typeof setInterval;
18 setTimeout: typeof setTimeout;
19};