@types/node 12.19.1 → 12.19.2

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 v12.19/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/v12.
9
9
 
10
10
  ### Additional Details
11
- * Last updated: Thu, 22 Oct 2020 17:54:31 GMT
11
+ * Last updated: Mon, 26 Oct 2020 22:58:17 GMT
12
12
  * Dependencies: none
13
13
  * Global values: `Buffer`, `NodeJS`, `__dirname`, `__filename`, `clearImmediate`, `clearInterval`, `clearTimeout`, `console`, `exports`, `global`, `module`, `process`, `queueMicrotask`, `require`, `setImmediate`, `setInterval`, `setTimeout`
14
14
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/node",
3
- "version": "12.19.1",
3
+ "version": "12.19.2",
4
4
  "description": "TypeScript definitions for Node.js",
5
5
  "license": "MIT",
6
6
  "contributors": [
@@ -231,6 +231,6 @@
231
231
  },
232
232
  "scripts": {},
233
233
  "dependencies": {},
234
- "typesPublisherContentHash": "6d8e6e44181f32dca7cb8d9388470422d2ac5adc3218d6146df78cf88ffc6bb5",
234
+ "typesPublisherContentHash": "1b26fba776dabe6181a3dbeafb1ab140da716d7a38c58f85a8915c13e0d805a6",
235
235
  "typeScriptVersion": "3.2"
236
236
  }
node v12.19/repl.d.ts CHANGED
@@ -131,13 +131,21 @@ declare module "repl" {
131
131
  */
132
132
  readonly context: Context;
133
133
  /**
134
- * The `Readable` stream from which REPL input will be read.
134
+ * Outdated alias for `input`.
135
135
  */
136
136
  readonly inputStream: NodeJS.ReadableStream;
137
137
  /**
138
- * The `Writable` stream to which REPL output will be written.
138
+ * Outdated alias for `output`.
139
139
  */
140
140
  readonly outputStream: NodeJS.WritableStream;
141
+ /**
142
+ * The `Readable` stream from which REPL input will be read.
143
+ */
144
+ readonly input: NodeJS.ReadableStream;
145
+ /**
146
+ * The `Writable` stream to which REPL output will be written.
147
+ */
148
+ readonly output: NodeJS.WritableStream;
141
149
  /**
142
150
  * The commands registered via `replServer.defineCommand()`.
143
151
  */