@types/node 16.18.38 → 16.18.40
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.18/README.md +1 -1
- node v16.18/http2.d.ts +1 -1
- node v16.18/package.json +2 -2
- node v16.18/perf_hooks.d.ts +1 -1
- node v16.18/ts4.8/http2.d.ts +1 -1
node v16.18/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: Tue, 08 Aug 2023 20:32:46 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
* Global values: `AbortController`, `AbortSignal`, `__dirname`, `__filename`, `console`, `exports`, `gc`, `global`, `module`, `process`, `require`
|
|
14
14
|
|
node v16.18/http2.d.ts
CHANGED
|
@@ -128,7 +128,7 @@ declare module 'http2' {
|
|
|
128
128
|
* value will be `undefined` after the `Http2Stream` instance is destroyed.
|
|
129
129
|
* @since v8.4.0
|
|
130
130
|
*/
|
|
131
|
-
readonly session: Http2Session;
|
|
131
|
+
readonly session: Http2Session | undefined;
|
|
132
132
|
/**
|
|
133
133
|
* Provides miscellaneous information about the current state of the`Http2Stream`.
|
|
134
134
|
*
|
node v16.18/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/node",
|
|
3
|
-
"version": "16.18.
|
|
3
|
+
"version": "16.18.40",
|
|
4
4
|
"description": "TypeScript definitions for Node.js",
|
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node",
|
|
6
6
|
"license": "MIT",
|
|
@@ -227,6 +227,6 @@
|
|
|
227
227
|
},
|
|
228
228
|
"scripts": {},
|
|
229
229
|
"dependencies": {},
|
|
230
|
-
"typesPublisherContentHash": "
|
|
230
|
+
"typesPublisherContentHash": "80dbb3ee257f3414b3e09466a2ec1f7138d974130fa00ae13c5b71263992b73e",
|
|
231
231
|
"typeScriptVersion": "4.3"
|
|
232
232
|
}
|
node v16.18/perf_hooks.d.ts
CHANGED
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
*/
|
|
31
31
|
declare module 'perf_hooks' {
|
|
32
32
|
import { AsyncResource } from 'node:async_hooks';
|
|
33
|
-
type EntryType = 'node' | 'mark' | 'measure' | 'gc' | 'function' | 'http2' | 'http';
|
|
33
|
+
type EntryType = 'node' | 'mark' | 'measure' | 'gc' | 'function' | 'http2' | 'http' | 'dns';
|
|
34
34
|
interface NodeGCPerformanceDetail {
|
|
35
35
|
/**
|
|
36
36
|
* When `performanceEntry.entryType` is equal to 'gc', `the performance.kind` property identifies
|
node v16.18/ts4.8/http2.d.ts
CHANGED
|
@@ -128,7 +128,7 @@ declare module 'http2' {
|
|
|
128
128
|
* value will be `undefined` after the `Http2Stream` instance is destroyed.
|
|
129
129
|
* @since v8.4.0
|
|
130
130
|
*/
|
|
131
|
-
readonly session: Http2Session;
|
|
131
|
+
readonly session: Http2Session | undefined;
|
|
132
132
|
/**
|
|
133
133
|
* Provides miscellaneous information about the current state of the`Http2Stream`.
|
|
134
134
|
*
|