@types/node 16.7.9 → 16.7.10
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/README.md +1 -1
- node/package.json +2 -2
- node/stream.d.ts +1 -0
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: Tue, 31 Aug 2021
|
|
11
|
+
* Last updated: Tue, 31 Aug 2021 23:01:31 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
* Global values: `AbortController`, `AbortSignal`, `__dirname`, `__filename`, `console`, `exports`, `gc`, `global`, `module`, `process`, `require`
|
|
14
14
|
|
node/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/node",
|
|
3
|
-
"version": "16.7.
|
|
3
|
+
"version": "16.7.10",
|
|
4
4
|
"description": "TypeScript definitions for Node.js",
|
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node",
|
|
6
6
|
"license": "MIT",
|
|
@@ -225,6 +225,6 @@
|
|
|
225
225
|
},
|
|
226
226
|
"scripts": {},
|
|
227
227
|
"dependencies": {},
|
|
228
|
-
"typesPublisherContentHash": "
|
|
228
|
+
"typesPublisherContentHash": "dab8b1ebd1a2d1adf8718b3e89b722efd699ee7f1f3737ffcd836aa86b69eaef",
|
|
229
229
|
"typeScriptVersion": "3.7"
|
|
230
230
|
}
|
node/stream.d.ts
CHANGED
|
@@ -790,6 +790,7 @@ declare module 'stream' {
|
|
|
790
790
|
readonly writableLength: number;
|
|
791
791
|
readonly writableObjectMode: boolean;
|
|
792
792
|
readonly writableCorked: number;
|
|
793
|
+
allowHalfOpen: boolean;
|
|
793
794
|
constructor(opts?: DuplexOptions);
|
|
794
795
|
_write(chunk: any, encoding: BufferEncoding, callback: (error?: Error | null) => void): void;
|
|
795
796
|
_writev?(
|