@types/node 10.17.59 → 10.17.60
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 +1 -1
- node v10.17/async_hooks.d.ts +2 -2
- node v10.17/package.json +2 -2
- node v10.17/repl.d.ts +3 -3
- node v10.17/vm.d.ts +1 -1
node v10.17/README.md
CHANGED
|
@@ -8,7 +8,7 @@ This package contains type definitions for Node.js (http://nodejs.org/).
|
|
|
8
8
|
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node/v10.
|
|
9
9
|
|
|
10
10
|
### Additional Details
|
|
11
|
-
* Last updated:
|
|
11
|
+
* Last updated: Wed, 12 May 2021 19:31:33 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
* Global values: `Buffer`, `NodeJS`, `__dirname`, `__filename`, `clearImmediate`, `clearInterval`, `clearTimeout`, `console`, `exports`, `global`, `module`, `process`, `require`, `setImmediate`, `setInterval`, `setTimeout`
|
|
14
14
|
|
node v10.17/async_hooks.d.ts
CHANGED
|
@@ -71,7 +71,7 @@ declare module "async_hooks" {
|
|
|
71
71
|
interface AsyncResourceOptions {
|
|
72
72
|
/**
|
|
73
73
|
* The ID of the execution context that created this async event.
|
|
74
|
-
*
|
|
74
|
+
* @default executionAsyncId()
|
|
75
75
|
*/
|
|
76
76
|
triggerAsyncId?: number;
|
|
77
77
|
|
|
@@ -80,7 +80,7 @@ declare module "async_hooks" {
|
|
|
80
80
|
* This usually does not need to be set (even if `emitDestroy` is called
|
|
81
81
|
* manually), unless the resource's `asyncId` is retrieved and the
|
|
82
82
|
* sensitive API's `emitDestroy` is called with it.
|
|
83
|
-
*
|
|
83
|
+
* @default false
|
|
84
84
|
*/
|
|
85
85
|
requireManualDestroy?: boolean;
|
|
86
86
|
}
|
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.60",
|
|
4
4
|
"description": "TypeScript definitions for Node.js",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"contributors": [
|
|
@@ -176,6 +176,6 @@
|
|
|
176
176
|
},
|
|
177
177
|
"scripts": {},
|
|
178
178
|
"dependencies": {},
|
|
179
|
-
"typesPublisherContentHash": "
|
|
179
|
+
"typesPublisherContentHash": "043aec4c1325df260459806b88c55ed404fbcdbdcc6f21b372a2ec206b4a218d",
|
|
180
180
|
"typeScriptVersion": "3.5"
|
|
181
181
|
}
|
node v10.17/repl.d.ts
CHANGED
|
@@ -6,17 +6,17 @@ declare module "repl" {
|
|
|
6
6
|
interface ReplOptions {
|
|
7
7
|
/**
|
|
8
8
|
* The input prompt to display.
|
|
9
|
-
*
|
|
9
|
+
* @default "> "
|
|
10
10
|
*/
|
|
11
11
|
prompt?: string;
|
|
12
12
|
/**
|
|
13
13
|
* The `Readable` stream from which REPL input will be read.
|
|
14
|
-
*
|
|
14
|
+
* @default process.stdin
|
|
15
15
|
*/
|
|
16
16
|
input?: NodeJS.ReadableStream;
|
|
17
17
|
/**
|
|
18
18
|
* The `Writable` stream to which REPL output will be written.
|
|
19
|
-
*
|
|
19
|
+
* @default process.stdout
|
|
20
20
|
*/
|
|
21
21
|
output?: NodeJS.WritableStream;
|
|
22
22
|
/**
|