blob: b02a682c6210f063eb1a0fc5a91ebca95e12528c (
plain)
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
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
import { process as processModule } from "./process.ts";
import { Buffer as bufferModule } from "./buffer.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;
};
declare global {
interface Window {
global: GlobalType;
}
interface globalThis {
global: GlobalType;
}
var global: GlobalType;
var process: typeof processModule;
var Buffer: typeof bufferModule;
type Buffer = bufferModule;
}
export {};
|