@types/node 12.20.9 → 12.20.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 v12.20/README.md +1 -1
- node v12.20/http.d.ts +4 -0
- node v12.20/package.json +2 -2
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:
|
|
11
|
+
* Last updated: Fri, 16 Apr 2021 03:31:17 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
|
|
node v12.20/http.d.ts
CHANGED
|
@@ -336,6 +336,10 @@ declare module 'http' {
|
|
|
336
336
|
* Socket timeout in milliseconds. This will set the timeout after the socket is connected.
|
|
337
337
|
*/
|
|
338
338
|
timeout?: number;
|
|
339
|
+
/**
|
|
340
|
+
* Scheduling strategy to apply when picking the next free socket to use. Default: 'fifo'.
|
|
341
|
+
*/
|
|
342
|
+
scheduling?: 'fifo' | 'lifo';
|
|
339
343
|
}
|
|
340
344
|
|
|
341
345
|
class Agent {
|
node v12.20/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/node",
|
|
3
|
-
"version": "12.20.
|
|
3
|
+
"version": "12.20.10",
|
|
4
4
|
"description": "TypeScript definitions for Node.js",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"contributors": [
|
|
@@ -211,6 +211,6 @@
|
|
|
211
211
|
},
|
|
212
212
|
"scripts": {},
|
|
213
213
|
"dependencies": {},
|
|
214
|
-
"typesPublisherContentHash": "
|
|
214
|
+
"typesPublisherContentHash": "697ddc6befec5201abab83489a1943d7601627fb31d331b0db3bb03c2b2cefc8",
|
|
215
215
|
"typeScriptVersion": "3.5"
|
|
216
216
|
}
|