mirror of
https://github.com/denoland/deno.git
synced 2024-11-05 09:04:41 -05:00
ef9b66950f
Co-authored-by: David Sherret <dsherret@gmail.com>
15 lines
461 B
TypeScript
15 lines
461 B
TypeScript
declare const tempGlobalThis: typeof globalThis;
|
|
declare const tempGlobal: typeof global;
|
|
declare const tempProcess: typeof process;
|
|
export {
|
|
tempGlobalThis as globalThis,
|
|
tempGlobal as global,
|
|
tempProcess as process,
|
|
};
|
|
|
|
type AssertTrue<T extends true> = never;
|
|
type _TestHasProcessGlobal = AssertTrue<
|
|
typeof globalThis extends { process: any } ? true : false
|
|
>;
|
|
|
|
export function withNodeGlobalThis(action: (global: typeof globalThis) => void): void;
|