@types/node 10.17.34 → 10.17.35
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- node v10.17/README.md +2 -2
- node v10.17/globals.d.ts +1008 -2
- node v10.17/package.json +2 -7
- node v10.17/{ts3.1 → ts3.6}/assert.d.ts +0 -0
- node v10.17/ts3.6/base.d.ts +39 -6
- node v10.17/ts3.6/index.d.ts +1 -3
- node v10.17/util.d.ts +165 -5
- node v10.17/ts3.1/base.d.ts +0 -40
- node v10.17/ts3.1/globals.d.ts +0 -1013
- node v10.17/ts3.1/index.d.ts +0 -55
- node v10.17/ts3.1/util.d.ts +0 -171
node v10.17/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/node",
|
|
3
|
-
"version": "10.17.
|
|
3
|
+
"version": "10.17.35",
|
|
4
4
|
"description": "TypeScript definitions for Node.js",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"contributors": [
|
|
@@ -183,11 +183,6 @@
|
|
|
183
183
|
"main": "",
|
|
184
184
|
"types": "index.d.ts",
|
|
185
185
|
"typesVersions": {
|
|
186
|
-
"<=3.1": {
|
|
187
|
-
"*": [
|
|
188
|
-
"ts3.1/*"
|
|
189
|
-
]
|
|
190
|
-
},
|
|
191
186
|
"<=3.6": {
|
|
192
187
|
"*": [
|
|
193
188
|
"ts3.6/*"
|
|
@@ -201,6 +196,6 @@
|
|
|
201
196
|
},
|
|
202
197
|
"scripts": {},
|
|
203
198
|
"dependencies": {},
|
|
204
|
-
"typesPublisherContentHash": "
|
|
199
|
+
"typesPublisherContentHash": "0db48b52b8c9265facc50ff1d8e74d3023169a4f5254577b59e35e3635a2f6e6",
|
|
205
200
|
"typeScriptVersion": "3.2"
|
|
206
201
|
}
|
|
File without changes
|
node v10.17/ts3.6/base.d.ts
CHANGED
|
@@ -12,10 +12,43 @@
|
|
|
12
12
|
/// <reference lib="esnext.intl" />
|
|
13
13
|
/// <reference lib="esnext.bigint" />
|
|
14
14
|
|
|
15
|
-
//
|
|
16
|
-
// tslint:disable-next-line:no-bad-reference
|
|
17
|
-
/// <reference path="../ts3.1/base.d.ts" />
|
|
18
|
-
|
|
19
|
-
// TypeScript 3.2-specific augmentations:
|
|
20
|
-
/// <reference path="../util.d.ts" />
|
|
15
|
+
// base definitions for all NodeJS modules that are not specific to any version of TypeScript
|
|
21
16
|
/// <reference path="../globals.d.ts" />
|
|
17
|
+
/// <reference path="../async_hooks.d.ts" />
|
|
18
|
+
/// <reference path="../buffer.d.ts" />
|
|
19
|
+
/// <reference path="../child_process.d.ts" />
|
|
20
|
+
/// <reference path="../cluster.d.ts" />
|
|
21
|
+
/// <reference path="../console.d.ts" />
|
|
22
|
+
/// <reference path="../constants.d.ts" />
|
|
23
|
+
/// <reference path="../crypto.d.ts" />
|
|
24
|
+
/// <reference path="../dgram.d.ts" />
|
|
25
|
+
/// <reference path="../dns.d.ts" />
|
|
26
|
+
/// <reference path="../domain.d.ts" />
|
|
27
|
+
/// <reference path="../events.d.ts" />
|
|
28
|
+
/// <reference path="../fs.d.ts" />
|
|
29
|
+
/// <reference path="../http.d.ts" />
|
|
30
|
+
/// <reference path="../http2.d.ts" />
|
|
31
|
+
/// <reference path="../https.d.ts" />
|
|
32
|
+
/// <reference path="../inspector.d.ts" />
|
|
33
|
+
/// <reference path="../module.d.ts" />
|
|
34
|
+
/// <reference path="../net.d.ts" />
|
|
35
|
+
/// <reference path="../os.d.ts" />
|
|
36
|
+
/// <reference path="../path.d.ts" />
|
|
37
|
+
/// <reference path="../perf_hooks.d.ts" />
|
|
38
|
+
/// <reference path="../process.d.ts" />
|
|
39
|
+
/// <reference path="../punycode.d.ts" />
|
|
40
|
+
/// <reference path="../querystring.d.ts" />
|
|
41
|
+
/// <reference path="../readline.d.ts" />
|
|
42
|
+
/// <reference path="../repl.d.ts" />
|
|
43
|
+
/// <reference path="../stream.d.ts" />
|
|
44
|
+
/// <reference path="../string_decoder.d.ts" />
|
|
45
|
+
/// <reference path="../timers.d.ts" />
|
|
46
|
+
/// <reference path="../tls.d.ts" />
|
|
47
|
+
/// <reference path="../trace_events.d.ts" />
|
|
48
|
+
/// <reference path="../tty.d.ts" />
|
|
49
|
+
/// <reference path="../url.d.ts" />
|
|
50
|
+
/// <reference path="../util.d.ts" />
|
|
51
|
+
/// <reference path="../v8.d.ts" />
|
|
52
|
+
/// <reference path="../vm.d.ts" />
|
|
53
|
+
/// <reference path="../worker_threads.d.ts" />
|
|
54
|
+
/// <reference path="../zlib.d.ts" />
|
node v10.17/ts3.6/index.d.ts
CHANGED
node v10.17/util.d.ts
CHANGED
|
@@ -1,15 +1,175 @@
|
|
|
1
|
-
// tslint:disable-next-line:no-bad-reference
|
|
2
|
-
/// <reference path="ts3.1/util.d.ts" />
|
|
3
|
-
|
|
4
1
|
declare module "util" {
|
|
2
|
+
interface InspectOptions extends NodeJS.InspectOptions { }
|
|
3
|
+
function format(format: any, ...param: any[]): string;
|
|
4
|
+
function formatWithOptions(inspectOptions: InspectOptions, format: string, ...param: any[]): string;
|
|
5
|
+
/** @deprecated since v0.11.3 - use `console.error()` instead. */
|
|
6
|
+
function debug(string: string): void;
|
|
7
|
+
/** @deprecated since v0.11.3 - use `console.error()` instead. */
|
|
8
|
+
function error(...param: any[]): void;
|
|
9
|
+
/** @deprecated since v0.11.3 - use `console.log()` instead. */
|
|
10
|
+
function puts(...param: any[]): void;
|
|
11
|
+
/** @deprecated since v0.11.3 - use `console.log()` instead. */
|
|
12
|
+
function print(...param: any[]): void;
|
|
13
|
+
/** @deprecated since v0.11.3 - use a third party module instead. */
|
|
14
|
+
function log(string: string): void;
|
|
15
|
+
function inspect(object: any, showHidden?: boolean, depth?: number | null, color?: boolean): string;
|
|
16
|
+
function inspect(object: any, options: InspectOptions): string;
|
|
5
17
|
namespace inspect {
|
|
18
|
+
let colors: {
|
|
19
|
+
[color: string]: [number, number] | undefined
|
|
20
|
+
};
|
|
6
21
|
const custom: unique symbol;
|
|
22
|
+
let styles: {
|
|
23
|
+
[style: string]: string | undefined
|
|
24
|
+
};
|
|
25
|
+
let defaultOptions: InspectOptions;
|
|
7
26
|
}
|
|
8
|
-
|
|
9
|
-
|
|
27
|
+
/** @deprecated since v4.0.0 - use `Array.isArray()` instead. */
|
|
28
|
+
function isArray(object: any): object is any[];
|
|
29
|
+
/** @deprecated since v4.0.0 - use `util.types.isRegExp()` instead. */
|
|
30
|
+
function isRegExp(object: any): object is RegExp;
|
|
31
|
+
/** @deprecated since v4.0.0 - use `util.types.isDate()` instead. */
|
|
32
|
+
function isDate(object: any): object is Date;
|
|
33
|
+
/** @deprecated since v4.0.0 - use `util.types.isNativeError()` instead. */
|
|
34
|
+
function isError(object: any): object is Error;
|
|
35
|
+
function inherits(constructor: any, superConstructor: any): void;
|
|
36
|
+
function debuglog(key: string): (msg: string, ...param: any[]) => void;
|
|
37
|
+
/** @deprecated since v4.0.0 - use `typeof value === 'boolean'` instead. */
|
|
38
|
+
function isBoolean(object: any): object is boolean;
|
|
39
|
+
/** @deprecated since v4.0.0 - use `Buffer.isBuffer()` instead. */
|
|
40
|
+
function isBuffer(object: any): object is Buffer;
|
|
41
|
+
/** @deprecated since v4.0.0 - use `typeof value === 'function'` instead. */
|
|
42
|
+
function isFunction(object: any): boolean;
|
|
43
|
+
/** @deprecated since v4.0.0 - use `value === null` instead. */
|
|
44
|
+
function isNull(object: any): object is null;
|
|
45
|
+
/** @deprecated since v4.0.0 - use `value === null || value === undefined` instead. */
|
|
46
|
+
function isNullOrUndefined(object: any): object is null | undefined;
|
|
47
|
+
/** @deprecated since v4.0.0 - use `typeof value === 'number'` instead. */
|
|
48
|
+
function isNumber(object: any): object is number;
|
|
49
|
+
/** @deprecated since v4.0.0 - use `value !== null && typeof value === 'object'` instead. */
|
|
50
|
+
function isObject(object: any): boolean;
|
|
51
|
+
/** @deprecated since v4.0.0 - use `(typeof value !== 'object' && typeof value !== 'function') || value === null` instead. */
|
|
52
|
+
function isPrimitive(object: any): boolean;
|
|
53
|
+
/** @deprecated since v4.0.0 - use `typeof value === 'string'` instead. */
|
|
54
|
+
function isString(object: any): object is string;
|
|
55
|
+
/** @deprecated since v4.0.0 - use `typeof value === 'symbol'` instead. */
|
|
56
|
+
function isSymbol(object: any): object is symbol;
|
|
57
|
+
/** @deprecated since v4.0.0 - use `value === undefined` instead. */
|
|
58
|
+
function isUndefined(object: any): object is undefined;
|
|
59
|
+
function deprecate<T extends Function>(fn: T, message: string, code?: string): T;
|
|
60
|
+
function isDeepStrictEqual(val1: any, val2: any): boolean;
|
|
61
|
+
|
|
62
|
+
interface CustomPromisify<TCustom extends Function> extends Function {
|
|
63
|
+
__promisify__: TCustom;
|
|
10
64
|
}
|
|
65
|
+
|
|
66
|
+
function callbackify(fn: () => Promise<void>): (callback: (err: NodeJS.ErrnoException) => void) => void;
|
|
67
|
+
function callbackify<TResult>(fn: () => Promise<TResult>): (callback: (err: NodeJS.ErrnoException | null, result: TResult) => void) => void;
|
|
68
|
+
function callbackify<T1>(fn: (arg1: T1) => Promise<void>): (arg1: T1, callback: (err: NodeJS.ErrnoException) => void) => void;
|
|
69
|
+
function callbackify<T1, TResult>(fn: (arg1: T1) => Promise<TResult>): (arg1: T1, callback: (err: NodeJS.ErrnoException | null, result: TResult) => void) => void;
|
|
70
|
+
function callbackify<T1, T2>(fn: (arg1: T1, arg2: T2) => Promise<void>): (arg1: T1, arg2: T2, callback: (err: NodeJS.ErrnoException) => void) => void;
|
|
71
|
+
function callbackify<T1, T2, TResult>(fn: (arg1: T1, arg2: T2) => Promise<TResult>): (arg1: T1, arg2: T2, callback: (err: NodeJS.ErrnoException | null, result: TResult) => void) => void;
|
|
72
|
+
function callbackify<T1, T2, T3>(fn: (arg1: T1, arg2: T2, arg3: T3) => Promise<void>): (arg1: T1, arg2: T2, arg3: T3, callback: (err: NodeJS.ErrnoException) => void) => void;
|
|
73
|
+
function callbackify<T1, T2, T3, TResult>(
|
|
74
|
+
fn: (arg1: T1, arg2: T2, arg3: T3) => Promise<TResult>): (arg1: T1, arg2: T2, arg3: T3, callback: (err: NodeJS.ErrnoException | null, result: TResult) => void) => void;
|
|
75
|
+
function callbackify<T1, T2, T3, T4>(
|
|
76
|
+
fn: (arg1: T1, arg2: T2, arg3: T3, arg4: T4) => Promise<void>): (arg1: T1, arg2: T2, arg3: T3, arg4: T4, callback: (err: NodeJS.ErrnoException) => void) => void;
|
|
77
|
+
function callbackify<T1, T2, T3, T4, TResult>(
|
|
78
|
+
fn: (arg1: T1, arg2: T2, arg3: T3, arg4: T4) => Promise<TResult>): (arg1: T1, arg2: T2, arg3: T3, arg4: T4, callback: (err: NodeJS.ErrnoException | null, result: TResult) => void) => void;
|
|
79
|
+
function callbackify<T1, T2, T3, T4, T5>(
|
|
80
|
+
fn: (arg1: T1, arg2: T2, arg3: T3, arg4: T4, arg5: T5) => Promise<void>): (arg1: T1, arg2: T2, arg3: T3, arg4: T4, arg5: T5, callback: (err: NodeJS.ErrnoException) => void) => void;
|
|
81
|
+
function callbackify<T1, T2, T3, T4, T5, TResult>(
|
|
82
|
+
fn: (arg1: T1, arg2: T2, arg3: T3, arg4: T4, arg5: T5) => Promise<TResult>,
|
|
83
|
+
): (arg1: T1, arg2: T2, arg3: T3, arg4: T4, arg5: T5, callback: (err: NodeJS.ErrnoException | null, result: TResult) => void) => void;
|
|
84
|
+
function callbackify<T1, T2, T3, T4, T5, T6>(
|
|
85
|
+
fn: (arg1: T1, arg2: T2, arg3: T3, arg4: T4, arg5: T5, arg6: T6) => Promise<void>,
|
|
86
|
+
): (arg1: T1, arg2: T2, arg3: T3, arg4: T4, arg5: T5, arg6: T6, callback: (err: NodeJS.ErrnoException) => void) => void;
|
|
87
|
+
function callbackify<T1, T2, T3, T4, T5, T6, TResult>(
|
|
88
|
+
fn: (arg1: T1, arg2: T2, arg3: T3, arg4: T4, arg5: T5, arg6: T6) => Promise<TResult>
|
|
89
|
+
): (arg1: T1, arg2: T2, arg3: T3, arg4: T4, arg5: T5, arg6: T6, callback: (err: NodeJS.ErrnoException | null, result: TResult) => void) => void;
|
|
90
|
+
|
|
91
|
+
function promisify<TCustom extends Function>(fn: CustomPromisify<TCustom>): TCustom;
|
|
92
|
+
function promisify<TResult>(fn: (callback: (err: Error | null, result: TResult) => void) => void): () => Promise<TResult>;
|
|
93
|
+
function promisify(fn: (callback: (err?: Error | null) => void) => void): () => Promise<void>;
|
|
94
|
+
function promisify<T1, TResult>(fn: (arg1: T1, callback: (err: Error | null, result: TResult) => void) => void): (arg1: T1) => Promise<TResult>;
|
|
95
|
+
function promisify<T1>(fn: (arg1: T1, callback: (err?: Error | null) => void) => void): (arg1: T1) => Promise<void>;
|
|
96
|
+
function promisify<T1, T2, TResult>(fn: (arg1: T1, arg2: T2, callback: (err: Error | null, result: TResult) => void) => void): (arg1: T1, arg2: T2) => Promise<TResult>;
|
|
97
|
+
function promisify<T1, T2>(fn: (arg1: T1, arg2: T2, callback: (err?: Error | null) => void) => void): (arg1: T1, arg2: T2) => Promise<void>;
|
|
98
|
+
function promisify<T1, T2, T3, TResult>(fn: (arg1: T1, arg2: T2, arg3: T3, callback: (err: Error | null, result: TResult) => void) => void): (arg1: T1, arg2: T2, arg3: T3) => Promise<TResult>;
|
|
99
|
+
function promisify<T1, T2, T3>(fn: (arg1: T1, arg2: T2, arg3: T3, callback: (err?: Error | null) => void) => void): (arg1: T1, arg2: T2, arg3: T3) => Promise<void>;
|
|
100
|
+
function promisify<T1, T2, T3, T4, TResult>(
|
|
101
|
+
fn: (arg1: T1, arg2: T2, arg3: T3, arg4: T4, callback: (err: Error | null, result: TResult) => void) => void,
|
|
102
|
+
): (arg1: T1, arg2: T2, arg3: T3, arg4: T4) => Promise<TResult>;
|
|
103
|
+
function promisify<T1, T2, T3, T4>(fn: (arg1: T1, arg2: T2, arg3: T3, arg4: T4, callback: (err?: Error | null) => void) => void): (arg1: T1, arg2: T2, arg3: T3, arg4: T4) => Promise<void>;
|
|
104
|
+
function promisify<T1, T2, T3, T4, T5, TResult>(
|
|
105
|
+
fn: (arg1: T1, arg2: T2, arg3: T3, arg4: T4, arg5: T5, callback: (err: Error | null, result: TResult) => void) => void,
|
|
106
|
+
): (arg1: T1, arg2: T2, arg3: T3, arg4: T4, arg5: T5) => Promise<TResult>;
|
|
107
|
+
function promisify<T1, T2, T3, T4, T5>(
|
|
108
|
+
fn: (arg1: T1, arg2: T2, arg3: T3, arg4: T4, arg5: T5, callback: (err?: Error | null) => void) => void,
|
|
109
|
+
): (arg1: T1, arg2: T2, arg3: T3, arg4: T4, arg5: T5) => Promise<void>;
|
|
110
|
+
function promisify(fn: Function): Function;
|
|
111
|
+
|
|
11
112
|
namespace types {
|
|
113
|
+
const custom: unique symbol;
|
|
114
|
+
function isAnyArrayBuffer(object: any): boolean;
|
|
115
|
+
function isArgumentsObject(object: any): object is IArguments;
|
|
116
|
+
function isArrayBuffer(object: any): object is ArrayBuffer;
|
|
117
|
+
function isArrayBufferView(object: any): object is ArrayBufferView;
|
|
118
|
+
function isAsyncFunction(object: any): boolean;
|
|
12
119
|
function isBigInt64Array(value: any): value is BigInt64Array;
|
|
13
120
|
function isBigUint64Array(value: any): value is BigUint64Array;
|
|
121
|
+
function isBooleanObject(object: any): object is Boolean;
|
|
122
|
+
function isBoxedPrimitive(object: any): object is (Number | Boolean | String | Symbol /* | Object(BigInt) | Object(Symbol) */);
|
|
123
|
+
function isDataView(object: any): object is DataView;
|
|
124
|
+
function isDate(object: any): object is Date;
|
|
125
|
+
function isExternal(object: any): boolean;
|
|
126
|
+
function isFloat32Array(object: any): object is Float32Array;
|
|
127
|
+
function isFloat64Array(object: any): object is Float64Array;
|
|
128
|
+
function isGeneratorFunction(object: any): boolean;
|
|
129
|
+
function isGeneratorObject(object: any): boolean;
|
|
130
|
+
function isInt8Array(object: any): object is Int8Array;
|
|
131
|
+
function isInt16Array(object: any): object is Int16Array;
|
|
132
|
+
function isInt32Array(object: any): object is Int32Array;
|
|
133
|
+
function isMap(object: any): boolean;
|
|
134
|
+
function isMapIterator(object: any): boolean;
|
|
135
|
+
function isModuleNamespaceObject(value: any): boolean;
|
|
136
|
+
function isNativeError(object: any): object is Error;
|
|
137
|
+
function isNumberObject(object: any): object is Number;
|
|
138
|
+
function isPromise(object: any): boolean;
|
|
139
|
+
function isProxy(object: any): boolean;
|
|
140
|
+
function isRegExp(object: any): object is RegExp;
|
|
141
|
+
function isSet(object: any): boolean;
|
|
142
|
+
function isSetIterator(object: any): boolean;
|
|
143
|
+
function isSharedArrayBuffer(object: any): boolean;
|
|
144
|
+
function isStringObject(object: any): boolean;
|
|
145
|
+
function isSymbolObject(object: any): boolean;
|
|
146
|
+
function isTypedArray(object: any): object is NodeJS.TypedArray;
|
|
147
|
+
function isUint8Array(object: any): object is Uint8Array;
|
|
148
|
+
function isUint8ClampedArray(object: any): object is Uint8ClampedArray;
|
|
149
|
+
function isUint16Array(object: any): object is Uint16Array;
|
|
150
|
+
function isUint32Array(object: any): object is Uint32Array;
|
|
151
|
+
function isWeakMap(object: any): boolean;
|
|
152
|
+
function isWeakSet(object: any): boolean;
|
|
153
|
+
function isWebAssemblyCompiledModule(object: any): boolean;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
class TextDecoder {
|
|
157
|
+
readonly encoding: string;
|
|
158
|
+
readonly fatal: boolean;
|
|
159
|
+
readonly ignoreBOM: boolean;
|
|
160
|
+
constructor(
|
|
161
|
+
encoding?: string,
|
|
162
|
+
options?: { fatal?: boolean; ignoreBOM?: boolean }
|
|
163
|
+
);
|
|
164
|
+
decode(
|
|
165
|
+
input?: NodeJS.TypedArray | DataView | ArrayBuffer | null,
|
|
166
|
+
options?: { stream?: boolean }
|
|
167
|
+
): string;
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
class TextEncoder {
|
|
171
|
+
readonly encoding: string;
|
|
172
|
+
constructor();
|
|
173
|
+
encode(input?: string): Uint8Array;
|
|
14
174
|
}
|
|
15
175
|
}
|
node v10.17/ts3.1/base.d.ts
DELETED
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
// base definitions for all NodeJS modules that are not specific to any version of TypeScript
|
|
2
|
-
/// <reference path="globals.d.ts" />
|
|
3
|
-
/// <reference path="../async_hooks.d.ts" />
|
|
4
|
-
/// <reference path="../buffer.d.ts" />
|
|
5
|
-
/// <reference path="../child_process.d.ts" />
|
|
6
|
-
/// <reference path="../cluster.d.ts" />
|
|
7
|
-
/// <reference path="../console.d.ts" />
|
|
8
|
-
/// <reference path="../constants.d.ts" />
|
|
9
|
-
/// <reference path="../crypto.d.ts" />
|
|
10
|
-
/// <reference path="../dgram.d.ts" />
|
|
11
|
-
/// <reference path="../dns.d.ts" />
|
|
12
|
-
/// <reference path="../domain.d.ts" />
|
|
13
|
-
/// <reference path="../events.d.ts" />
|
|
14
|
-
/// <reference path="../fs.d.ts" />
|
|
15
|
-
/// <reference path="../http.d.ts" />
|
|
16
|
-
/// <reference path="../http2.d.ts" />
|
|
17
|
-
/// <reference path="../https.d.ts" />
|
|
18
|
-
/// <reference path="../inspector.d.ts" />
|
|
19
|
-
/// <reference path="../module.d.ts" />
|
|
20
|
-
/// <reference path="../net.d.ts" />
|
|
21
|
-
/// <reference path="../os.d.ts" />
|
|
22
|
-
/// <reference path="../path.d.ts" />
|
|
23
|
-
/// <reference path="../perf_hooks.d.ts" />
|
|
24
|
-
/// <reference path="../process.d.ts" />
|
|
25
|
-
/// <reference path="../punycode.d.ts" />
|
|
26
|
-
/// <reference path="../querystring.d.ts" />
|
|
27
|
-
/// <reference path="../readline.d.ts" />
|
|
28
|
-
/// <reference path="../repl.d.ts" />
|
|
29
|
-
/// <reference path="../stream.d.ts" />
|
|
30
|
-
/// <reference path="../string_decoder.d.ts" />
|
|
31
|
-
/// <reference path="../timers.d.ts" />
|
|
32
|
-
/// <reference path="../tls.d.ts" />
|
|
33
|
-
/// <reference path="../trace_events.d.ts" />
|
|
34
|
-
/// <reference path="../tty.d.ts" />
|
|
35
|
-
/// <reference path="../url.d.ts" />
|
|
36
|
-
/// <reference path="util.d.ts" />
|
|
37
|
-
/// <reference path="../v8.d.ts" />
|
|
38
|
-
/// <reference path="../vm.d.ts" />
|
|
39
|
-
/// <reference path="../worker_threads.d.ts" />
|
|
40
|
-
/// <reference path="../zlib.d.ts" />
|