@types/node 18.19.110 → 18.19.112
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 v18.19/README.md +1 -1
- node v18.19/assert.d.ts +3 -1
- node v18.19/http2.d.ts +64 -1
- node v18.19/package.json +2 -2
node v18.19/README.md
CHANGED
|
@@ -8,7 +8,7 @@ This package contains type definitions for node (https://nodejs.org/).
|
|
|
8
8
|
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node/v18.
|
|
9
9
|
|
|
10
10
|
### Additional Details
|
|
11
|
-
* Last updated:
|
|
11
|
+
* Last updated: Mon, 16 Jun 2025 11:02:21 GMT
|
|
12
12
|
* Dependencies: [undici-types](https://npmjs.com/package/undici-types)
|
|
13
13
|
|
|
14
14
|
# Credits
|
node v18.19/assert.d.ts
CHANGED
|
@@ -64,7 +64,9 @@ declare module "assert" {
|
|
|
64
64
|
* @return that wraps `fn`.
|
|
65
65
|
*/
|
|
66
66
|
calls(exact?: number): () => void;
|
|
67
|
-
calls
|
|
67
|
+
calls(fn: undefined, exact?: number): () => void;
|
|
68
|
+
calls<Func extends (...args: any[]) => any>(fn: Func, exact?: number): Func;
|
|
69
|
+
calls<Func extends (...args: any[]) => any>(fn?: Func, exact?: number): Func | (() => void);
|
|
68
70
|
/**
|
|
69
71
|
* Example:
|
|
70
72
|
*
|
node v18.19/http2.d.ts
CHANGED
|
@@ -1223,13 +1223,60 @@ declare module "http2" {
|
|
|
1223
1223
|
}
|
|
1224
1224
|
// Http2Server
|
|
1225
1225
|
export interface SessionOptions {
|
|
1226
|
+
/**
|
|
1227
|
+
* Sets the maximum dynamic table size for deflating header fields.
|
|
1228
|
+
* @default 4Kib
|
|
1229
|
+
*/
|
|
1226
1230
|
maxDeflateDynamicTableSize?: number | undefined;
|
|
1231
|
+
/**
|
|
1232
|
+
* Sets the maximum number of settings entries per `SETTINGS` frame.
|
|
1233
|
+
* The minimum value allowed is `1`.
|
|
1234
|
+
* @default 32
|
|
1235
|
+
*/
|
|
1236
|
+
maxSettings?: number | undefined;
|
|
1237
|
+
/**
|
|
1238
|
+
* Sets the maximum memory that the `Http2Session` is permitted to use.
|
|
1239
|
+
* The value is expressed in terms of number of megabytes, e.g. `1` equal 1 megabyte.
|
|
1240
|
+
* The minimum value allowed is `1`.
|
|
1241
|
+
* This is a credit based limit, existing `Http2Stream`s may cause this limit to be exceeded,
|
|
1242
|
+
* but new `Http2Stream` instances will be rejected while this limit is exceeded.
|
|
1243
|
+
* The current number of `Http2Stream` sessions, the current memory use of the header compression tables,
|
|
1244
|
+
* current data queued to be sent, and unacknowledged `PING` and `SETTINGS` frames are all counted towards the current limit.
|
|
1245
|
+
* @default 10
|
|
1246
|
+
*/
|
|
1227
1247
|
maxSessionMemory?: number | undefined;
|
|
1248
|
+
/**
|
|
1249
|
+
* Sets the maximum number of header entries.
|
|
1250
|
+
* This is similar to `server.maxHeadersCount` or `request.maxHeadersCount` in the `node:http` module.
|
|
1251
|
+
* The minimum value is `1`.
|
|
1252
|
+
* @default 128
|
|
1253
|
+
*/
|
|
1228
1254
|
maxHeaderListPairs?: number | undefined;
|
|
1255
|
+
/**
|
|
1256
|
+
* Sets the maximum number of outstanding, unacknowledged pings.
|
|
1257
|
+
* @default 10
|
|
1258
|
+
*/
|
|
1229
1259
|
maxOutstandingPings?: number | undefined;
|
|
1260
|
+
/**
|
|
1261
|
+
* Sets the maximum allowed size for a serialized, compressed block of headers.
|
|
1262
|
+
* Attempts to send headers that exceed this limit will result in
|
|
1263
|
+
* a `'frameError'` event being emitted and the stream being closed and destroyed.
|
|
1264
|
+
*/
|
|
1230
1265
|
maxSendHeaderBlockLength?: number | undefined;
|
|
1266
|
+
/**
|
|
1267
|
+
* Strategy used for determining the amount of padding to use for `HEADERS` and `DATA` frames.
|
|
1268
|
+
* @default http2.constants.PADDING_STRATEGY_NONE
|
|
1269
|
+
*/
|
|
1231
1270
|
paddingStrategy?: number | undefined;
|
|
1271
|
+
/**
|
|
1272
|
+
* Sets the maximum number of concurrent streams for the remote peer as if a `SETTINGS` frame had been received.
|
|
1273
|
+
* Will be overridden if the remote peer sets its own value for `maxConcurrentStreams`.
|
|
1274
|
+
* @default 100
|
|
1275
|
+
*/
|
|
1232
1276
|
peerMaxConcurrentStreams?: number | undefined;
|
|
1277
|
+
/**
|
|
1278
|
+
* The initial settings to send to the remote peer upon connection.
|
|
1279
|
+
*/
|
|
1233
1280
|
settings?: Settings | undefined;
|
|
1234
1281
|
/**
|
|
1235
1282
|
* Specifies a timeout in milliseconds that
|
|
@@ -1238,11 +1285,27 @@ declare module "http2" {
|
|
|
1238
1285
|
* @default 100000
|
|
1239
1286
|
*/
|
|
1240
1287
|
unknownProtocolTimeout?: number | undefined;
|
|
1241
|
-
selectPadding?(frameLen: number, maxFrameLen: number): number;
|
|
1242
1288
|
}
|
|
1243
1289
|
export interface ClientSessionOptions extends SessionOptions {
|
|
1290
|
+
/**
|
|
1291
|
+
* Sets the maximum number of reserved push streams the client will accept at any given time.
|
|
1292
|
+
* Once the current number of currently reserved push streams exceeds reaches this limit,
|
|
1293
|
+
* new push streams sent by the server will be automatically rejected.
|
|
1294
|
+
* The minimum allowed value is 0. The maximum allowed value is 2<sup>32</sup>-1.
|
|
1295
|
+
* A negative value sets this option to the maximum allowed value.
|
|
1296
|
+
* @default 200
|
|
1297
|
+
*/
|
|
1244
1298
|
maxReservedRemoteStreams?: number | undefined;
|
|
1299
|
+
/**
|
|
1300
|
+
* An optional callback that receives the `URL` instance passed to `connect` and the `options` object,
|
|
1301
|
+
* and returns any `Duplex` stream that is to be used as the connection for this session.
|
|
1302
|
+
*/
|
|
1245
1303
|
createConnection?: ((authority: url.URL, option: SessionOptions) => stream.Duplex) | undefined;
|
|
1304
|
+
/**
|
|
1305
|
+
* The protocol to connect with, if not set in the `authority`.
|
|
1306
|
+
* Value may be either `'http:'` or `'https:'`.
|
|
1307
|
+
* @default 'https:'
|
|
1308
|
+
*/
|
|
1246
1309
|
protocol?: "http:" | "https:" | undefined;
|
|
1247
1310
|
}
|
|
1248
1311
|
export interface ServerSessionOptions<
|
node v18.19/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/node",
|
|
3
|
-
"version": "18.19.
|
|
3
|
+
"version": "18.19.112",
|
|
4
4
|
"description": "TypeScript definitions for node",
|
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node",
|
|
6
6
|
"license": "MIT",
|
|
@@ -220,6 +220,6 @@
|
|
|
220
220
|
"undici-types": "~5.26.4"
|
|
221
221
|
},
|
|
222
222
|
"peerDependencies": {},
|
|
223
|
-
"typesPublisherContentHash": "
|
|
223
|
+
"typesPublisherContentHash": "3b0022e6fd68674bfe09bfec92263763b1fba74ce671da541765e24b2af05d76",
|
|
224
224
|
"typeScriptVersion": "5.1"
|
|
225
225
|
}
|