@types/node 14.14.4 → 14.14.5

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.
Files changed (3) hide show
  1. node/README.md +1 -1
  2. node/package.json +2 -2
  3. node/repl.d.ts +10 -2
node/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.
9
9
 
10
10
  ### Additional Details
11
- * Last updated: Mon, 26 Oct 2020 22:49:44 GMT
11
+ * Last updated: Mon, 26 Oct 2020 22:58:09 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
 
node/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/node",
3
- "version": "14.14.4",
3
+ "version": "14.14.5",
4
4
  "description": "TypeScript definitions for Node.js",
5
5
  "license": "MIT",
6
6
  "contributors": [
@@ -246,6 +246,6 @@
246
246
  },
247
247
  "scripts": {},
248
248
  "dependencies": {},
249
- "typesPublisherContentHash": "db05bfcea2177a510db97e3a6f343a4a31abe28dca2ff0bdb472e9f69e984244",
249
+ "typesPublisherContentHash": "206a5a1941c97b04fbffd53f14102a1ca47f991778959646c5dc8df1b2e6abd6",
250
250
  "typeScriptVersion": "3.2"
251
251
  }
node/repl.d.ts CHANGED
@@ -136,13 +136,21 @@ declare module "repl" {
136
136
  */
137
137
  readonly context: Context;
138
138
  /**
139
- * The `Readable` stream from which REPL input will be read.
139
+ * @deprecated since v14.3.0 - Use `input` instead.
140
140
  */
141
141
  readonly inputStream: NodeJS.ReadableStream;
142
142
  /**
143
- * The `Writable` stream to which REPL output will be written.
143
+ * @deprecated since v14.3.0 - Use `output` instead.
144
144
  */
145
145
  readonly outputStream: NodeJS.WritableStream;
146
+ /**
147
+ * The `Readable` stream from which REPL input will be read.
148
+ */
149
+ readonly input: NodeJS.ReadableStream;
150
+ /**
151
+ * The `Writable` stream to which REPL output will be written.
152
+ */
153
+ readonly output: NodeJS.WritableStream;
146
154
  /**
147
155
  * The commands registered via `replServer.defineCommand()`.
148
156
  */