forked from denoland/std
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathglobal.d.ts
33 lines (27 loc) · 877 Bytes
/
global.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
import processModule from "./process.ts";
import { Buffer as bufferModule } from "./buffer.ts";
import timers from "./timers.ts";
// d.ts files allow us to declare Buffer as a value and as a type
// type something = Buffer | something_else; is quite common
type GlobalType = {
process: typeof processModule;
Buffer: typeof bufferModule;
setImmediate: typeof timers.setImmediate;
clearImmediate: typeof timers.clearImmediate;
};
declare global {
interface Window {
global: GlobalType;
}
interface globalThis {
global: GlobalType;
}
var global: GlobalType;
var process: typeof processModule;
var Buffer: typeof bufferModule;
type Buffer = bufferModule;
var setImmediate: typeof timers.setImmediate;
var clearImmediate: typeof timers.clearImmediate;
}
export {};