@types/node 10.17.42 → 10.17.43
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/package.json +2 -2
- node v10.17/repl.d.ts +10 -2
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: Mon, 26 Oct 2020 22:58:23 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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/node",
|
|
3
|
-
"version": "10.17.
|
|
3
|
+
"version": "10.17.43",
|
|
4
4
|
"description": "TypeScript definitions for Node.js",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"contributors": [
|
|
@@ -196,6 +196,6 @@
|
|
|
196
196
|
},
|
|
197
197
|
"scripts": {},
|
|
198
198
|
"dependencies": {},
|
|
199
|
-
"typesPublisherContentHash": "
|
|
199
|
+
"typesPublisherContentHash": "d29af71f673be08c4e39f7a35f28dcb6e77bb4f42898d97049b7fe9817baf9f9",
|
|
200
200
|
"typeScriptVersion": "3.2"
|
|
201
201
|
}
|
node v10.17/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
|
*/
|