@types/node 14.0.22 → 14.0.23

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/process.d.ts +9 -3
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: Fri, 10 Jul 2020 14:49:31 GMT
11
+ * Last updated: Mon, 13 Jul 2020 16:24:35 GMT
12
12
  * Dependencies: none
13
13
  * Global values: `Buffer`, `Symbol`, `__dirname`, `__filename`, `clearImmediate`, `clearInterval`, `clearTimeout`, `exports`, `global`, `module`, `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.0.22",
3
+ "version": "14.0.23",
4
4
  "description": "TypeScript definitions for Node.js",
5
5
  "license": "MIT",
6
6
  "contributors": [
@@ -251,6 +251,6 @@
251
251
  },
252
252
  "scripts": {},
253
253
  "dependencies": {},
254
- "typesPublisherContentHash": "f78fd3a598fd4e5b96cf0085c1892137a734bc9d6f5acc8a47a6cb8b63834c44",
254
+ "typesPublisherContentHash": "804cf921ce926d59cd60cf46be4e11bfc4fcb82f51e61daec706fb27bd4db0ba",
255
255
  "typeScriptVersion": "3.0"
256
256
  }
node/process.d.ts CHANGED
@@ -174,12 +174,18 @@ declare module "process" {
174
174
  /**
175
175
  * Can also be a tty.WriteStream, not typed due to limitations.
176
176
  */
177
- stdout: WriteStream;
177
+ stdout: WriteStream & {
178
+ fd: 1;
179
+ };
178
180
  /**
179
181
  * Can also be a tty.WriteStream, not typed due to limitations.
180
182
  */
181
- stderr: WriteStream;
182
- stdin: ReadStream;
183
+ stderr: WriteStream & {
184
+ fd: 2;
185
+ };
186
+ stdin: ReadStream & {
187
+ fd: 0;
188
+ };
183
189
  openStdin(): Socket;
184
190
  argv: string[];
185
191
  argv0: string;