@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 +1 -1
- node v12.19/package.json +2 -2
- node v12.19/repl.d.ts +10 -2
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:
|
|
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
|
|
node v12.19/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/node",
|
|
3
|
-
"version": "12.19.
|
|
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": "
|
|
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
|
-
*
|
|
134
|
+
* Outdated alias for `input`.
|
|
135
135
|
*/
|
|
136
136
|
readonly inputStream: NodeJS.ReadableStream;
|
|
137
137
|
/**
|
|
138
|
-
*
|
|
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
|
*/
|