@types/node 12.20.16 → 12.20.17
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 +1 -1
- 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: Sat, 24 Jul 2021 17:31:18 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
|
@@ -158,7 +158,7 @@ declare module 'http' {
|
|
|
158
158
|
// https://github.com/nodejs/node/blob/master/test/parallel/test-http-write-callbacks.js#L53
|
|
159
159
|
// no args in writeContinue callback
|
|
160
160
|
writeContinue(callback?: () => void): void;
|
|
161
|
-
writeHead(statusCode: number,
|
|
161
|
+
writeHead(statusCode: number, statusMessage?: string, headers?: OutgoingHttpHeaders): this;
|
|
162
162
|
writeHead(statusCode: number, headers?: OutgoingHttpHeaders): this;
|
|
163
163
|
writeProcessing(): void;
|
|
164
164
|
}
|
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.17",
|
|
4
4
|
"description": "TypeScript definitions for Node.js",
|
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node",
|
|
6
6
|
"license": "MIT",
|
|
@@ -207,6 +207,6 @@
|
|
|
207
207
|
},
|
|
208
208
|
"scripts": {},
|
|
209
209
|
"dependencies": {},
|
|
210
|
-
"typesPublisherContentHash": "
|
|
210
|
+
"typesPublisherContentHash": "03ad51e0fae8319fed49fd88e752a5d29156ac54196b416d61da70af5a27e0e0",
|
|
211
211
|
"typeScriptVersion": "3.6"
|
|
212
212
|
}
|