@types/node 12.20.22 → 12.20.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.
node v12.20/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: Tue, 31 Aug 2021 17:01:29 GMT
11
+ * Last updated: Tue, 31 Aug 2021 23:01:33 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.20.22",
3
+ "version": "12.20.23",
4
4
  "description": "TypeScript definitions for Node.js",
5
5
  "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node",
6
6
  "license": "MIT",
@@ -200,6 +200,6 @@
200
200
  },
201
201
  "scripts": {},
202
202
  "dependencies": {},
203
- "typesPublisherContentHash": "e3ce2c0b981ced70858e78c2e8bbb567c70ad22adbc518d9de3ec39d2bdea2f6",
203
+ "typesPublisherContentHash": "b54e1ad768c7f46e0cb25c41c1febd78527776fec36ba84da7897e4a78e533fb",
204
204
  "typeScriptVersion": "3.7"
205
205
  }
node v12.20/stream.d.ts CHANGED
@@ -230,6 +230,7 @@ declare module 'stream' {
230
230
  readonly writableHighWaterMark: number;
231
231
  readonly writableLength: number;
232
232
  readonly writableObjectMode: boolean;
233
+ allowHalfOpen: boolean;
233
234
  constructor(opts?: DuplexOptions);
234
235
  _write(chunk: any, encoding: string, callback: (error?: Error | null) => void): void;
235
236
  _writev?(chunks: Array<{ chunk: any, encoding: string }>, callback: (error?: Error | null) => void): void;