blob: ee03712dd461bb1cc2aea04267d941dbd8b32c37 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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
>;
|