@types/node 16.11.11 → 16.11.15
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 → node v16.11}/LICENSE +0 -0
- node/README.md → node v16.11/README.md +2 -2
- {node → node v16.11}/assert/strict.d.ts +0 -0
- {node → node v16.11}/assert.d.ts +0 -0
- {node → node v16.11}/async_hooks.d.ts +0 -0
- {node → node v16.11}/buffer.d.ts +0 -0
- {node → node v16.11}/child_process.d.ts +0 -0
- {node → node v16.11}/cluster.d.ts +0 -0
- {node → node v16.11}/console.d.ts +0 -0
- {node → node v16.11}/constants.d.ts +0 -0
- {node → node v16.11}/crypto.d.ts +0 -0
- {node → node v16.11}/dgram.d.ts +0 -0
- {node → node v16.11}/diagnostics_channel.d.ts +0 -0
- {node → node v16.11}/dns/promises.d.ts +0 -0
- {node → node v16.11}/dns.d.ts +0 -0
- {node → node v16.11}/domain.d.ts +0 -0
- {node → node v16.11}/events.d.ts +0 -0
- {node → node v16.11}/fs/promises.d.ts +0 -0
- {node → node v16.11}/fs.d.ts +0 -0
- {node → node v16.11}/globals.d.ts +0 -0
- {node → node v16.11}/globals.global.d.ts +0 -0
- node/http.d.ts → node v16.11/http.d.ts +1 -1
- node/http2.d.ts → node v16.11/http2.d.ts +1 -1
- {node → node v16.11}/https.d.ts +0 -0
- {node → node v16.11}/index.d.ts +0 -0
- {node → node v16.11}/inspector.d.ts +0 -0
- {node → node v16.11}/module.d.ts +0 -0
- {node → node v16.11}/net.d.ts +0 -0
- {node → node v16.11}/os.d.ts +0 -0
- node/package.json → node v16.11/package.json +2 -2
- {node → node v16.11}/path.d.ts +0 -0
- {node → node v16.11}/perf_hooks.d.ts +0 -0
- {node → node v16.11}/process.d.ts +0 -0
- {node → node v16.11}/punycode.d.ts +0 -0
- {node → node v16.11}/querystring.d.ts +0 -0
- {node → node v16.11}/readline.d.ts +0 -0
- {node → node v16.11}/repl.d.ts +0 -0
- {node → node v16.11}/stream/consumers.d.ts +0 -0
- {node → node v16.11}/stream/promises.d.ts +0 -0
- {node → node v16.11}/stream/web.d.ts +0 -0
- {node → node v16.11}/stream.d.ts +0 -0
- {node → node v16.11}/string_decoder.d.ts +0 -0
- {node → node v16.11}/timers/promises.d.ts +0 -0
- {node → node v16.11}/timers.d.ts +0 -0
- {node → node v16.11}/tls.d.ts +0 -0
- {node → node v16.11}/trace_events.d.ts +0 -0
- {node → node v16.11}/tty.d.ts +0 -0
- {node → node v16.11}/url.d.ts +0 -0
- {node → node v16.11}/util.d.ts +0 -0
- {node → node v16.11}/v8.d.ts +0 -0
- {node → node v16.11}/vm.d.ts +0 -0
- {node → node v16.11}/wasi.d.ts +0 -0
- {node → node v16.11}/worker_threads.d.ts +0 -0
- {node → node v16.11}/zlib.d.ts +0 -0
{node → node v16.11}/LICENSE
RENAMED
|
File without changes
|
|
@@ -5,10 +5,10 @@
|
|
|
5
5
|
This package contains type definitions for Node.js (https://nodejs.org/).
|
|
6
6
|
|
|
7
7
|
# Details
|
|
8
|
-
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node.
|
|
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, 20 Dec 2021 23:01:22 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
* Global values: `AbortController`, `AbortSignal`, `__dirname`, `__filename`, `console`, `exports`, `gc`, `global`, `module`, `process`, `require`
|
|
14
14
|
|
|
File without changes
|
{node → node v16.11}/assert.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
{node → node v16.11}/buffer.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{node → node v16.11}/crypto.d.ts
RENAMED
|
File without changes
|
{node → node v16.11}/dgram.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{node → node v16.11}/dns.d.ts
RENAMED
|
File without changes
|
{node → node v16.11}/domain.d.ts
RENAMED
|
File without changes
|
{node → node v16.11}/events.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
{node → node v16.11}/fs.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -113,7 +113,7 @@ declare module 'http' {
|
|
|
113
113
|
type OutgoingHttpHeader = number | string | string[];
|
|
114
114
|
interface OutgoingHttpHeaders extends NodeJS.Dict<OutgoingHttpHeader> {}
|
|
115
115
|
interface ClientRequestArgs {
|
|
116
|
-
|
|
116
|
+
signal?: AbortSignal | undefined;
|
|
117
117
|
protocol?: string | null | undefined;
|
|
118
118
|
host?: string | null | undefined;
|
|
119
119
|
hostname?: string | null | undefined;
|
|
@@ -1349,7 +1349,7 @@ declare module 'http2' {
|
|
|
1349
1349
|
* ```
|
|
1350
1350
|
* @since v8.4.0
|
|
1351
1351
|
*/
|
|
1352
|
-
|
|
1352
|
+
url: string;
|
|
1353
1353
|
/**
|
|
1354
1354
|
* Sets the `Http2Stream`'s timeout value to `msecs`. If a callback is
|
|
1355
1355
|
* provided, then it is added as a listener on the `'timeout'` event on
|
{node → node v16.11}/https.d.ts
RENAMED
|
File without changes
|
{node → node v16.11}/index.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
{node → node v16.11}/module.d.ts
RENAMED
|
File without changes
|
{node → node v16.11}/net.d.ts
RENAMED
|
File without changes
|
{node → node v16.11}/os.d.ts
RENAMED
|
File without changes
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/node",
|
|
3
|
-
"version": "16.11.
|
|
3
|
+
"version": "16.11.15",
|
|
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": "ca52d04f7b4e57dcfa9b765dbfec04cd5d51de62b20785aadff03b8f9e760eb7",
|
|
229
229
|
"typeScriptVersion": "3.8"
|
|
230
230
|
}
|
{node → node v16.11}/path.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{node → node v16.11}/repl.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{node → node v16.11}/stream.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{node → node v16.11}/timers.d.ts
RENAMED
|
File without changes
|
{node → node v16.11}/tls.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
{node → node v16.11}/tty.d.ts
RENAMED
|
File without changes
|
{node → node v16.11}/url.d.ts
RENAMED
|
File without changes
|
{node → node v16.11}/util.d.ts
RENAMED
|
File without changes
|
{node → node v16.11}/v8.d.ts
RENAMED
|
File without changes
|
{node → node v16.11}/vm.d.ts
RENAMED
|
File without changes
|
{node → node v16.11}/wasi.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
{node → node v16.11}/zlib.d.ts
RENAMED
|
File without changes
|