@types/node 16.11.16 → 16.11.20
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 v16.11/README.md +1 -1
- node v16.11/http.d.ts +10 -0
- node v16.11/net.d.ts +1 -0
- node v16.11/package.json +2 -2
- node v16.11/perf_hooks.d.ts +2 -0
- node v16.11/process.d.ts +1 -1
node v16.11/README.md
CHANGED
|
@@ -8,7 +8,7 @@ This package contains type definitions for Node.js (https://nodejs.org/).
|
|
|
8
8
|
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node/v16.
|
|
9
9
|
|
|
10
10
|
### Additional Details
|
|
11
|
-
* Last updated:
|
|
11
|
+
* Last updated: Mon, 17 Jan 2022 09:01:28 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
* Global values: `AbortController`, `AbortSignal`, `__dirname`, `__filename`, `console`, `exports`, `gc`, `global`, `module`, `process`, `require`
|
|
14
14
|
|
node v16.11/http.d.ts
CHANGED
|
@@ -620,6 +620,16 @@ declare module 'http' {
|
|
|
620
620
|
* @since v14.5.0, v12.19.0
|
|
621
621
|
*/
|
|
622
622
|
protocol: string;
|
|
623
|
+
/**
|
|
624
|
+
* Whether the request is send through a reused socket.
|
|
625
|
+
* @since v13.0.0, v12.16.0
|
|
626
|
+
*/
|
|
627
|
+
reusedSocket: boolean;
|
|
628
|
+
/**
|
|
629
|
+
* Limits maximum response headers count. If set to 0, no limit will be applied.
|
|
630
|
+
* @default 2000
|
|
631
|
+
*/
|
|
632
|
+
maxHeadersCount: number;
|
|
623
633
|
constructor(url: string | URL | ClientRequestArgs, cb?: (res: IncomingMessage) => void);
|
|
624
634
|
/**
|
|
625
635
|
* The request method.
|
node v16.11/net.d.ts
CHANGED
node v16.11/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/node",
|
|
3
|
-
"version": "16.11.
|
|
3
|
+
"version": "16.11.20",
|
|
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": "f0cf5494053bbd33ab4c7158523ff1dc364c1fccc00f77ca4fbf1abe50280825",
|
|
229
229
|
"typeScriptVersion": "3.8"
|
|
230
230
|
}
|
node v16.11/perf_hooks.d.ts
CHANGED
node v16.11/process.d.ts
CHANGED