@types/node 12.19.7 → 12.19.8
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.19/README.md +1 -1
- node v12.19/http.d.ts +2 -1
- node v12.19/package.json +2 -2
node v12.19/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: Mon, 30 Nov 2020 19:02:20 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.19/http.d.ts
CHANGED
|
@@ -173,7 +173,7 @@ declare module "http" {
|
|
|
173
173
|
rawHeaders: string[];
|
|
174
174
|
}
|
|
175
175
|
|
|
176
|
-
// https://github.com/nodejs/node/blob/
|
|
176
|
+
// https://github.com/nodejs/node/blob/v12.20.0/lib/_http_client.js#L85
|
|
177
177
|
class ClientRequest extends OutgoingMessage {
|
|
178
178
|
connection: Socket;
|
|
179
179
|
socket: Socket;
|
|
@@ -183,6 +183,7 @@ declare module "http" {
|
|
|
183
183
|
|
|
184
184
|
constructor(url: string | URL | ClientRequestArgs, cb?: (res: IncomingMessage) => void);
|
|
185
185
|
|
|
186
|
+
method: string;
|
|
186
187
|
readonly path: string;
|
|
187
188
|
abort(): void;
|
|
188
189
|
onSocket(socket: Socket): void;
|
node v12.19/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/node",
|
|
3
|
-
"version": "12.19.
|
|
3
|
+
"version": "12.19.8",
|
|
4
4
|
"description": "TypeScript definitions for Node.js",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"contributors": [
|
|
@@ -231,6 +231,6 @@
|
|
|
231
231
|
},
|
|
232
232
|
"scripts": {},
|
|
233
233
|
"dependencies": {},
|
|
234
|
-
"typesPublisherContentHash": "
|
|
234
|
+
"typesPublisherContentHash": "fbb8d0256722db1e7d6892cfbf2ebb540436e14769bf24b8e54853751ec8d869",
|
|
235
235
|
"typeScriptVersion": "3.3"
|
|
236
236
|
}
|