@types/node 13.13.51 → 13.13.52

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 v13.13/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/v13.
9
9
 
10
10
  ### Additional Details
11
- * Last updated: Tue, 27 Apr 2021 14:31:28 GMT
11
+ * Last updated: Wed, 12 May 2021 19:31:29 GMT
12
12
  * Dependencies: none
13
13
  * Global values: `Buffer`, `__dirname`, `__filename`, `clearImmediate`, `clearInterval`, `clearTimeout`, `console`, `exports`, `global`, `module`, `process`, `queueMicrotask`, `require`, `setImmediate`, `setInterval`, `setTimeout`
14
14
 
@@ -85,7 +85,7 @@ declare module "async_hooks" {
85
85
  interface AsyncResourceOptions {
86
86
  /**
87
87
  * The ID of the execution context that created this async event.
88
- * Default: `executionAsyncId()`
88
+ * @default executionAsyncId()
89
89
  */
90
90
  triggerAsyncId?: number;
91
91
 
@@ -94,7 +94,7 @@ declare module "async_hooks" {
94
94
  * This usually does not need to be set (even if `emitDestroy` is called
95
95
  * manually), unless the resource's `asyncId` is retrieved and the
96
96
  * sensitive API's `emitDestroy` is called with it.
97
- * Default: `false`
97
+ * @default false
98
98
  */
99
99
  requireManualDestroy?: boolean;
100
100
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/node",
3
- "version": "13.13.51",
3
+ "version": "13.13.52",
4
4
  "description": "TypeScript definitions for Node.js",
5
5
  "license": "MIT",
6
6
  "contributors": [
@@ -216,6 +216,6 @@
216
216
  },
217
217
  "scripts": {},
218
218
  "dependencies": {},
219
- "typesPublisherContentHash": "8ab00ac611eef491b979179fe0f6b9f4dc514cc338925b97cd6e849bf8739a0f",
219
+ "typesPublisherContentHash": "fc443441fc1011a9c40501d6229a600447809ab63533420929119694647fada1",
220
220
  "typeScriptVersion": "3.5"
221
221
  }
node v13.13/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
- * Default: `"> "`
9
+ * @default "> "
10
10
  */
11
11
  prompt?: string;
12
12
  /**
13
13
  * The `Readable` stream from which REPL input will be read.
14
- * Default: `process.stdin`
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
- * Default: `process.stdout`
19
+ * @default process.stdout
20
20
  */
21
21
  output?: NodeJS.WritableStream;
22
22
  /**
node v13.13/vm.d.ts CHANGED
@@ -13,7 +13,7 @@ declare module "vm" {
13
13
  lineOffset?: number;
14
14
  /**
15
15
  * Specifies the column number offset that is displayed in stack traces produced by this script.
16
- * Default: `0`
16
+ * @default 0
17
17
  */
18
18
  columnOffset?: number;
19
19
  }