@types/node 16.4.5 → 16.4.6
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/http2.d.ts +5 -0
- node/package.json +2 -2
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: Wed, 28 Jul 2021
|
|
11
|
+
* Last updated: Wed, 28 Jul 2021 19:31:18 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
* Global values: `AbortController`, `AbortSignal`, `__dirname`, `__filename`, `console`, `exports`, `gc`, `global`, `module`, `process`, `require`
|
|
14
14
|
|
node/http2.d.ts
CHANGED
|
@@ -1432,6 +1432,11 @@ declare module 'http2' {
|
|
|
1432
1432
|
* @since v8.4.0
|
|
1433
1433
|
*/
|
|
1434
1434
|
readonly headersSent: boolean;
|
|
1435
|
+
/**
|
|
1436
|
+
* A reference to the original HTTP2 request object.
|
|
1437
|
+
* @since v15.7.0
|
|
1438
|
+
*/
|
|
1439
|
+
readonly req: Http2ServerRequest;
|
|
1435
1440
|
readonly socket: net.Socket | tls.TLSSocket;
|
|
1436
1441
|
readonly stream: ServerHttp2Stream;
|
|
1437
1442
|
sendDate: boolean;
|
node/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/node",
|
|
3
|
-
"version": "16.4.
|
|
3
|
+
"version": "16.4.6",
|
|
4
4
|
"description": "TypeScript definitions for Node.js",
|
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node",
|
|
6
6
|
"license": "MIT",
|
|
@@ -232,6 +232,6 @@
|
|
|
232
232
|
},
|
|
233
233
|
"scripts": {},
|
|
234
234
|
"dependencies": {},
|
|
235
|
-
"typesPublisherContentHash": "
|
|
235
|
+
"typesPublisherContentHash": "409fea0ec0757dc100114c6d35fe3b616cdf1e1095e08f5e2f83bd9336035435",
|
|
236
236
|
"typeScriptVersion": "3.6"
|
|
237
237
|
}
|