@types/node 24.2.1 → 24.3.1

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/globals.d.ts CHANGED
@@ -1,367 +1,168 @@
1
- export {}; // Make this a module
1
+ declare var global: typeof globalThis;
2
2
 
3
- // #region Fetch and friends
4
- // Conditional type aliases, used at the end of this file.
5
- // Will either be empty if lib.dom (or lib.webworker) is included, or the undici version otherwise.
6
- type _Request = typeof globalThis extends { onmessage: any } ? {} : import("undici-types").Request;
7
- type _Response = typeof globalThis extends { onmessage: any } ? {} : import("undici-types").Response;
8
- type _FormData = typeof globalThis extends { onmessage: any } ? {} : import("undici-types").FormData;
9
- type _Headers = typeof globalThis extends { onmessage: any } ? {} : import("undici-types").Headers;
10
- type _MessageEvent = typeof globalThis extends { onmessage: any } ? {} : import("undici-types").MessageEvent;
11
- type _RequestInit = typeof globalThis extends { onmessage: any } ? {}
12
- : import("undici-types").RequestInit;
13
- type _ResponseInit = typeof globalThis extends { onmessage: any } ? {}
14
- : import("undici-types").ResponseInit;
15
- type _WebSocket = typeof globalThis extends { onmessage: any } ? {} : import("undici-types").WebSocket;
16
- type _EventSource = typeof globalThis extends { onmessage: any } ? {} : import("undici-types").EventSource;
17
- type _CloseEvent = typeof globalThis extends { onmessage: any } ? {} : import("undici-types").CloseEvent;
18
- // #endregion Fetch and friends
19
-
20
- // Conditional type definitions for webstorage interface, which conflicts with lib.dom otherwise.
21
- type _Storage = typeof globalThis extends { onabort: any } ? {} : {
22
- readonly length: number;
23
- clear(): void;
24
- getItem(key: string): string | null;
25
- key(index: number): string | null;
26
- removeItem(key: string): void;
27
- setItem(key: string, value: string): void;
28
- [key: string]: any;
29
- };
30
-
31
- // #region DOMException
32
- type _DOMException = typeof globalThis extends { onmessage: any } ? {} : NodeDOMException;
33
- interface NodeDOMException extends Error {
34
- readonly code: number;
35
- readonly message: string;
36
- readonly name: string;
37
- readonly INDEX_SIZE_ERR: 1;
38
- readonly DOMSTRING_SIZE_ERR: 2;
39
- readonly HIERARCHY_REQUEST_ERR: 3;
40
- readonly WRONG_DOCUMENT_ERR: 4;
41
- readonly INVALID_CHARACTER_ERR: 5;
42
- readonly NO_DATA_ALLOWED_ERR: 6;
43
- readonly NO_MODIFICATION_ALLOWED_ERR: 7;
44
- readonly NOT_FOUND_ERR: 8;
45
- readonly NOT_SUPPORTED_ERR: 9;
46
- readonly INUSE_ATTRIBUTE_ERR: 10;
47
- readonly INVALID_STATE_ERR: 11;
48
- readonly SYNTAX_ERR: 12;
49
- readonly INVALID_MODIFICATION_ERR: 13;
50
- readonly NAMESPACE_ERR: 14;
51
- readonly INVALID_ACCESS_ERR: 15;
52
- readonly VALIDATION_ERR: 16;
53
- readonly TYPE_MISMATCH_ERR: 17;
54
- readonly SECURITY_ERR: 18;
55
- readonly NETWORK_ERR: 19;
56
- readonly ABORT_ERR: 20;
57
- readonly URL_MISMATCH_ERR: 21;
58
- readonly QUOTA_EXCEEDED_ERR: 22;
59
- readonly TIMEOUT_ERR: 23;
60
- readonly INVALID_NODE_TYPE_ERR: 24;
61
- readonly DATA_CLONE_ERR: 25;
62
- }
63
- interface NodeDOMExceptionConstructor {
64
- prototype: DOMException;
65
- new(message?: string, nameOrOptions?: string | { name?: string; cause?: unknown }): DOMException;
66
- readonly INDEX_SIZE_ERR: 1;
67
- readonly DOMSTRING_SIZE_ERR: 2;
68
- readonly HIERARCHY_REQUEST_ERR: 3;
69
- readonly WRONG_DOCUMENT_ERR: 4;
70
- readonly INVALID_CHARACTER_ERR: 5;
71
- readonly NO_DATA_ALLOWED_ERR: 6;
72
- readonly NO_MODIFICATION_ALLOWED_ERR: 7;
73
- readonly NOT_FOUND_ERR: 8;
74
- readonly NOT_SUPPORTED_ERR: 9;
75
- readonly INUSE_ATTRIBUTE_ERR: 10;
76
- readonly INVALID_STATE_ERR: 11;
77
- readonly SYNTAX_ERR: 12;
78
- readonly INVALID_MODIFICATION_ERR: 13;
79
- readonly NAMESPACE_ERR: 14;
80
- readonly INVALID_ACCESS_ERR: 15;
81
- readonly VALIDATION_ERR: 16;
82
- readonly TYPE_MISMATCH_ERR: 17;
83
- readonly SECURITY_ERR: 18;
84
- readonly NETWORK_ERR: 19;
85
- readonly ABORT_ERR: 20;
86
- readonly URL_MISMATCH_ERR: 21;
87
- readonly QUOTA_EXCEEDED_ERR: 22;
88
- readonly TIMEOUT_ERR: 23;
89
- readonly INVALID_NODE_TYPE_ERR: 24;
90
- readonly DATA_CLONE_ERR: 25;
91
- }
92
- // #endregion DOMException
93
-
94
- declare global {
95
- var global: typeof globalThis;
96
-
97
- var process: NodeJS.Process;
98
- var console: Console;
99
-
100
- interface ErrorConstructor {
101
- /**
102
- * Creates a `.stack` property on `targetObject`, which when accessed returns
103
- * a string representing the location in the code at which
104
- * `Error.captureStackTrace()` was called.
105
- *
106
- * ```js
107
- * const myObject = {};
108
- * Error.captureStackTrace(myObject);
109
- * myObject.stack; // Similar to `new Error().stack`
110
- * ```
111
- *
112
- * The first line of the trace will be prefixed with
113
- * `${myObject.name}: ${myObject.message}`.
114
- *
115
- * The optional `constructorOpt` argument accepts a function. If given, all frames
116
- * above `constructorOpt`, including `constructorOpt`, will be omitted from the
117
- * generated stack trace.
118
- *
119
- * The `constructorOpt` argument is useful for hiding implementation
120
- * details of error generation from the user. For instance:
121
- *
122
- * ```js
123
- * function a() {
124
- * b();
125
- * }
126
- *
127
- * function b() {
128
- * c();
129
- * }
130
- *
131
- * function c() {
132
- * // Create an error without stack trace to avoid calculating the stack trace twice.
133
- * const { stackTraceLimit } = Error;
134
- * Error.stackTraceLimit = 0;
135
- * const error = new Error();
136
- * Error.stackTraceLimit = stackTraceLimit;
137
- *
138
- * // Capture the stack trace above function b
139
- * Error.captureStackTrace(error, b); // Neither function c, nor b is included in the stack trace
140
- * throw error;
141
- * }
142
- *
143
- * a();
144
- * ```
145
- */
146
- captureStackTrace(targetObject: object, constructorOpt?: Function): void;
147
- /**
148
- * @see https://v8.dev/docs/stack-trace-api#customizing-stack-traces
149
- */
150
- prepareStackTrace(err: Error, stackTraces: NodeJS.CallSite[]): any;
151
- /**
152
- * The `Error.stackTraceLimit` property specifies the number of stack frames
153
- * collected by a stack trace (whether generated by `new Error().stack` or
154
- * `Error.captureStackTrace(obj)`).
155
- *
156
- * The default value is `10` but may be set to any valid JavaScript number. Changes
157
- * will affect any stack trace captured _after_ the value has been changed.
158
- *
159
- * If set to a non-number value, or set to a negative number, stack traces will
160
- * not capture any frames.
161
- */
162
- stackTraceLimit: number;
163
- }
3
+ declare var process: NodeJS.Process;
4
+ declare var console: Console;
164
5
 
6
+ interface ErrorConstructor {
165
7
  /**
166
- * Enable this API with the `--expose-gc` CLI flag.
8
+ * Creates a `.stack` property on `targetObject`, which when accessed returns
9
+ * a string representing the location in the code at which
10
+ * `Error.captureStackTrace()` was called.
11
+ *
12
+ * ```js
13
+ * const myObject = {};
14
+ * Error.captureStackTrace(myObject);
15
+ * myObject.stack; // Similar to `new Error().stack`
16
+ * ```
17
+ *
18
+ * The first line of the trace will be prefixed with
19
+ * `${myObject.name}: ${myObject.message}`.
20
+ *
21
+ * The optional `constructorOpt` argument accepts a function. If given, all frames
22
+ * above `constructorOpt`, including `constructorOpt`, will be omitted from the
23
+ * generated stack trace.
24
+ *
25
+ * The `constructorOpt` argument is useful for hiding implementation
26
+ * details of error generation from the user. For instance:
27
+ *
28
+ * ```js
29
+ * function a() {
30
+ * b();
31
+ * }
32
+ *
33
+ * function b() {
34
+ * c();
35
+ * }
36
+ *
37
+ * function c() {
38
+ * // Create an error without stack trace to avoid calculating the stack trace twice.
39
+ * const { stackTraceLimit } = Error;
40
+ * Error.stackTraceLimit = 0;
41
+ * const error = new Error();
42
+ * Error.stackTraceLimit = stackTraceLimit;
43
+ *
44
+ * // Capture the stack trace above function b
45
+ * Error.captureStackTrace(error, b); // Neither function c, nor b is included in the stack trace
46
+ * throw error;
47
+ * }
48
+ *
49
+ * a();
50
+ * ```
167
51
  */
168
- var gc: NodeJS.GCFunction | undefined;
169
-
170
- namespace NodeJS {
171
- interface CallSite {
172
- getColumnNumber(): number | null;
173
- getEnclosingColumnNumber(): number | null;
174
- getEnclosingLineNumber(): number | null;
175
- getEvalOrigin(): string | undefined;
176
- getFileName(): string | null;
177
- getFunction(): Function | undefined;
178
- getFunctionName(): string | null;
179
- getLineNumber(): number | null;
180
- getMethodName(): string | null;
181
- getPosition(): number;
182
- getPromiseIndex(): number | null;
183
- getScriptHash(): string;
184
- getScriptNameOrSourceURL(): string | null;
185
- getThis(): unknown;
186
- getTypeName(): string | null;
187
- isAsync(): boolean;
188
- isConstructor(): boolean;
189
- isEval(): boolean;
190
- isNative(): boolean;
191
- isPromiseAll(): boolean;
192
- isToplevel(): boolean;
193
- }
194
-
195
- interface ErrnoException extends Error {
196
- errno?: number | undefined;
197
- code?: string | undefined;
198
- path?: string | undefined;
199
- syscall?: string | undefined;
200
- }
201
-
202
- interface ReadableStream extends EventEmitter {
203
- readable: boolean;
204
- read(size?: number): string | Buffer;
205
- setEncoding(encoding: BufferEncoding): this;
206
- pause(): this;
207
- resume(): this;
208
- isPaused(): boolean;
209
- pipe<T extends WritableStream>(destination: T, options?: { end?: boolean | undefined }): T;
210
- unpipe(destination?: WritableStream): this;
211
- unshift(chunk: string | Uint8Array, encoding?: BufferEncoding): void;
212
- wrap(oldStream: ReadableStream): this;
213
- [Symbol.asyncIterator](): AsyncIterableIterator<string | Buffer>;
214
- }
215
-
216
- interface WritableStream extends EventEmitter {
217
- writable: boolean;
218
- write(buffer: Uint8Array | string, cb?: (err?: Error | null) => void): boolean;
219
- write(str: string, encoding?: BufferEncoding, cb?: (err?: Error | null) => void): boolean;
220
- end(cb?: () => void): this;
221
- end(data: string | Uint8Array, cb?: () => void): this;
222
- end(str: string, encoding?: BufferEncoding, cb?: () => void): this;
223
- }
224
-
225
- interface ReadWriteStream extends ReadableStream, WritableStream {}
226
-
227
- interface RefCounted {
228
- ref(): this;
229
- unref(): this;
230
- }
231
-
232
- interface Dict<T> {
233
- [key: string]: T | undefined;
234
- }
235
-
236
- interface ReadOnlyDict<T> {
237
- readonly [key: string]: T | undefined;
238
- }
239
-
240
- interface GCFunction {
241
- (minor?: boolean): void;
242
- (options: NodeJS.GCOptions & { execution: "async" }): Promise<void>;
243
- (options: NodeJS.GCOptions): void;
244
- }
245
-
246
- interface GCOptions {
247
- execution?: "sync" | "async" | undefined;
248
- flavor?: "regular" | "last-resort" | undefined;
249
- type?: "major-snapshot" | "major" | "minor" | undefined;
250
- filename?: string | undefined;
251
- }
252
-
253
- /** An iterable iterator returned by the Node.js API. */
254
- interface Iterator<T, TReturn = undefined, TNext = any> extends IteratorObject<T, TReturn, TNext> {
255
- [Symbol.iterator](): NodeJS.Iterator<T, TReturn, TNext>;
256
- }
52
+ captureStackTrace(targetObject: object, constructorOpt?: Function): void;
53
+ /**
54
+ * @see https://v8.dev/docs/stack-trace-api#customizing-stack-traces
55
+ */
56
+ prepareStackTrace(err: Error, stackTraces: NodeJS.CallSite[]): any;
57
+ /**
58
+ * The `Error.stackTraceLimit` property specifies the number of stack frames
59
+ * collected by a stack trace (whether generated by `new Error().stack` or
60
+ * `Error.captureStackTrace(obj)`).
61
+ *
62
+ * The default value is `10` but may be set to any valid JavaScript number. Changes
63
+ * will affect any stack trace captured _after_ the value has been changed.
64
+ *
65
+ * If set to a non-number value, or set to a negative number, stack traces will
66
+ * not capture any frames.
67
+ */
68
+ stackTraceLimit: number;
69
+ }
257
70
 
258
- /** An async iterable iterator returned by the Node.js API. */
259
- interface AsyncIterator<T, TReturn = undefined, TNext = any> extends AsyncIteratorObject<T, TReturn, TNext> {
260
- [Symbol.asyncIterator](): NodeJS.AsyncIterator<T, TReturn, TNext>;
261
- }
71
+ /**
72
+ * Enable this API with the `--expose-gc` CLI flag.
73
+ */
74
+ declare var gc: NodeJS.GCFunction | undefined;
75
+
76
+ declare namespace NodeJS {
77
+ interface CallSite {
78
+ getColumnNumber(): number | null;
79
+ getEnclosingColumnNumber(): number | null;
80
+ getEnclosingLineNumber(): number | null;
81
+ getEvalOrigin(): string | undefined;
82
+ getFileName(): string | null;
83
+ getFunction(): Function | undefined;
84
+ getFunctionName(): string | null;
85
+ getLineNumber(): number | null;
86
+ getMethodName(): string | null;
87
+ getPosition(): number;
88
+ getPromiseIndex(): number | null;
89
+ getScriptHash(): string;
90
+ getScriptNameOrSourceURL(): string | null;
91
+ getThis(): unknown;
92
+ getTypeName(): string | null;
93
+ isAsync(): boolean;
94
+ isConstructor(): boolean;
95
+ isEval(): boolean;
96
+ isNative(): boolean;
97
+ isPromiseAll(): boolean;
98
+ isToplevel(): boolean;
262
99
  }
263
100
 
264
- // Global DOM types
265
-
266
- interface DOMException extends _DOMException {}
267
- var DOMException: typeof globalThis extends { onmessage: any; DOMException: infer T } ? T
268
- : NodeDOMExceptionConstructor;
269
-
270
- // #region AbortController
271
- interface AbortController {
272
- readonly signal: AbortSignal;
273
- abort(reason?: any): void;
101
+ interface ErrnoException extends Error {
102
+ errno?: number | undefined;
103
+ code?: string | undefined;
104
+ path?: string | undefined;
105
+ syscall?: string | undefined;
274
106
  }
275
- var AbortController: typeof globalThis extends { onmessage: any; AbortController: infer T } ? T
276
- : {
277
- prototype: AbortController;
278
- new(): AbortController;
279
- };
280
107
 
281
- interface AbortSignal extends EventTarget {
282
- readonly aborted: boolean;
283
- onabort: ((this: AbortSignal, ev: Event) => any) | null;
284
- readonly reason: any;
285
- throwIfAborted(): void;
108
+ interface ReadableStream extends EventEmitter {
109
+ readable: boolean;
110
+ read(size?: number): string | Buffer;
111
+ setEncoding(encoding: BufferEncoding): this;
112
+ pause(): this;
113
+ resume(): this;
114
+ isPaused(): boolean;
115
+ pipe<T extends WritableStream>(destination: T, options?: { end?: boolean | undefined }): T;
116
+ unpipe(destination?: WritableStream): this;
117
+ unshift(chunk: string | Uint8Array, encoding?: BufferEncoding): void;
118
+ wrap(oldStream: ReadableStream): this;
119
+ [Symbol.asyncIterator](): AsyncIterableIterator<string | Buffer>;
286
120
  }
287
- var AbortSignal: typeof globalThis extends { onmessage: any; AbortSignal: infer T } ? T
288
- : {
289
- prototype: AbortSignal;
290
- new(): AbortSignal;
291
- abort(reason?: any): AbortSignal;
292
- any(signals: AbortSignal[]): AbortSignal;
293
- timeout(milliseconds: number): AbortSignal;
294
- };
295
- // #endregion AbortController
296
-
297
- // #region Storage
298
- interface Storage extends _Storage {}
299
- // Conditional on `onabort` rather than `onmessage`, in order to exclude lib.webworker
300
- var Storage: typeof globalThis extends { onabort: any; Storage: infer T } ? T
301
- : {
302
- prototype: Storage;
303
- new(): Storage;
304
- };
305
-
306
- var localStorage: Storage;
307
- var sessionStorage: Storage;
308
- // #endregion Storage
309
-
310
- // #region fetch
311
- interface RequestInit extends _RequestInit {}
312
121
 
313
- function fetch(
314
- input: string | URL | globalThis.Request,
315
- init?: RequestInit,
316
- ): Promise<Response>;
317
-
318
- interface Request extends _Request {}
319
- var Request: typeof globalThis extends {
320
- onmessage: any;
321
- Request: infer T;
322
- } ? T
323
- : typeof import("undici-types").Request;
122
+ interface WritableStream extends EventEmitter {
123
+ writable: boolean;
124
+ write(buffer: Uint8Array | string, cb?: (err?: Error | null) => void): boolean;
125
+ write(str: string, encoding?: BufferEncoding, cb?: (err?: Error | null) => void): boolean;
126
+ end(cb?: () => void): this;
127
+ end(data: string | Uint8Array, cb?: () => void): this;
128
+ end(str: string, encoding?: BufferEncoding, cb?: () => void): this;
129
+ }
324
130
 
325
- interface ResponseInit extends _ResponseInit {}
131
+ interface ReadWriteStream extends ReadableStream, WritableStream {}
326
132
 
327
- interface Response extends _Response {}
328
- var Response: typeof globalThis extends {
329
- onmessage: any;
330
- Response: infer T;
331
- } ? T
332
- : typeof import("undici-types").Response;
133
+ interface RefCounted {
134
+ ref(): this;
135
+ unref(): this;
136
+ }
333
137
 
334
- interface FormData extends _FormData {}
335
- var FormData: typeof globalThis extends {
336
- onmessage: any;
337
- FormData: infer T;
338
- } ? T
339
- : typeof import("undici-types").FormData;
138
+ interface Dict<T> {
139
+ [key: string]: T | undefined;
140
+ }
340
141
 
341
- interface Headers extends _Headers {}
342
- var Headers: typeof globalThis extends {
343
- onmessage: any;
344
- Headers: infer T;
345
- } ? T
346
- : typeof import("undici-types").Headers;
142
+ interface ReadOnlyDict<T> {
143
+ readonly [key: string]: T | undefined;
144
+ }
347
145
 
348
- interface MessageEvent extends _MessageEvent {}
349
- var MessageEvent: typeof globalThis extends {
350
- onmessage: any;
351
- MessageEvent: infer T;
352
- } ? T
353
- : typeof import("undici-types").MessageEvent;
146
+ interface GCFunction {
147
+ (minor?: boolean): void;
148
+ (options: NodeJS.GCOptions & { execution: "async" }): Promise<void>;
149
+ (options: NodeJS.GCOptions): void;
150
+ }
354
151
 
355
- interface WebSocket extends _WebSocket {}
356
- var WebSocket: typeof globalThis extends { onmessage: any; WebSocket: infer T } ? T
357
- : typeof import("undici-types").WebSocket;
152
+ interface GCOptions {
153
+ execution?: "sync" | "async" | undefined;
154
+ flavor?: "regular" | "last-resort" | undefined;
155
+ type?: "major-snapshot" | "major" | "minor" | undefined;
156
+ filename?: string | undefined;
157
+ }
358
158
 
359
- interface EventSource extends _EventSource {}
360
- var EventSource: typeof globalThis extends { onmessage: any; EventSource: infer T } ? T
361
- : typeof import("undici-types").EventSource;
159
+ /** An iterable iterator returned by the Node.js API. */
160
+ interface Iterator<T, TReturn = undefined, TNext = any> extends IteratorObject<T, TReturn, TNext> {
161
+ [Symbol.iterator](): NodeJS.Iterator<T, TReturn, TNext>;
162
+ }
362
163
 
363
- interface CloseEvent extends _CloseEvent {}
364
- var CloseEvent: typeof globalThis extends { onmessage: any; CloseEvent: infer T } ? T
365
- : typeof import("undici-types").CloseEvent;
366
- // #endregion fetch
164
+ /** An async iterable iterator returned by the Node.js API. */
165
+ interface AsyncIterator<T, TReturn = undefined, TNext = any> extends AsyncIteratorObject<T, TReturn, TNext> {
166
+ [Symbol.asyncIterator](): NodeJS.AsyncIterator<T, TReturn, TNext>;
167
+ }
367
168
  }
node/index.d.ts CHANGED
@@ -38,6 +38,12 @@
38
38
 
39
39
  // Definitions for Node.js modules that are not specific to any version of TypeScript:
40
40
  /// <reference path="globals.d.ts" />
41
+ /// <reference path="web-globals/abortcontroller.d.ts" />
42
+ /// <reference path="web-globals/domexception.d.ts" />
43
+ /// <reference path="web-globals/events.d.ts" />
44
+ /// <reference path="web-globals/fetch.d.ts" />
45
+ /// <reference path="web-globals/navigator.d.ts" />
46
+ /// <reference path="web-globals/storage.d.ts" />
41
47
  /// <reference path="assert.d.ts" />
42
48
  /// <reference path="assert/strict.d.ts" />
43
49
  /// <reference path="async_hooks.d.ts" />
@@ -53,7 +59,6 @@
53
59
  /// <reference path="dns/promises.d.ts" />
54
60
  /// <reference path="dns/promises.d.ts" />
55
61
  /// <reference path="domain.d.ts" />
56
- /// <reference path="dom-events.d.ts" />
57
62
  /// <reference path="events.d.ts" />
58
63
  /// <reference path="fs.d.ts" />
59
64
  /// <reference path="fs/promises.d.ts" />
node/inspector.d.ts CHANGED
@@ -1759,6 +1759,7 @@ declare module 'inspector' {
1759
1759
  url: string;
1760
1760
  method: string;
1761
1761
  headers: Headers;
1762
+ hasPostData: boolean;
1762
1763
  }
1763
1764
  /**
1764
1765
  * HTTP response data.
@@ -1776,12 +1777,40 @@ declare module 'inspector' {
1776
1777
  */
1777
1778
  interface Headers {
1778
1779
  }
1780
+ interface GetRequestPostDataParameterType {
1781
+ /**
1782
+ * Identifier of the network request to get content for.
1783
+ */
1784
+ requestId: RequestId;
1785
+ }
1786
+ interface GetResponseBodyParameterType {
1787
+ /**
1788
+ * Identifier of the network request to get content for.
1789
+ */
1790
+ requestId: RequestId;
1791
+ }
1779
1792
  interface StreamResourceContentParameterType {
1780
1793
  /**
1781
1794
  * Identifier of the request to stream.
1782
1795
  */
1783
1796
  requestId: RequestId;
1784
1797
  }
1798
+ interface GetRequestPostDataReturnType {
1799
+ /**
1800
+ * Request body string, omitting files from multipart requests
1801
+ */
1802
+ postData: string;
1803
+ }
1804
+ interface GetResponseBodyReturnType {
1805
+ /**
1806
+ * Response body.
1807
+ */
1808
+ body: string;
1809
+ /**
1810
+ * True, if content was sent as base64.
1811
+ */
1812
+ base64Encoded: boolean;
1813
+ }
1785
1814
  interface StreamResourceContentReturnType {
1786
1815
  /**
1787
1816
  * Data that has been buffered until streaming is enabled.
@@ -2285,6 +2314,16 @@ declare module 'inspector' {
2285
2314
  * Enables network tracking, network events will now be delivered to the client.
2286
2315
  */
2287
2316
  post(method: 'Network.enable', callback?: (err: Error | null) => void): void;
2317
+ /**
2318
+ * Returns post data sent with the request. Returns an error when no data was sent with the request.
2319
+ */
2320
+ post(method: 'Network.getRequestPostData', params?: Network.GetRequestPostDataParameterType, callback?: (err: Error | null, params: Network.GetRequestPostDataReturnType) => void): void;
2321
+ post(method: 'Network.getRequestPostData', callback?: (err: Error | null, params: Network.GetRequestPostDataReturnType) => void): void;
2322
+ /**
2323
+ * Returns content served for the given request.
2324
+ */
2325
+ post(method: 'Network.getResponseBody', params?: Network.GetResponseBodyParameterType, callback?: (err: Error | null, params: Network.GetResponseBodyReturnType) => void): void;
2326
+ post(method: 'Network.getResponseBody', callback?: (err: Error | null, params: Network.GetResponseBodyReturnType) => void): void;
2288
2327
  /**
2289
2328
  * Enables streaming of the response for the given requestId.
2290
2329
  * If enabled, the dataReceived event contains the data that was received during streaming.
@@ -3062,9 +3101,18 @@ declare module 'inspector' {
3062
3101
  *
3063
3102
  * Broadcasts the `Network.dataReceived` event to connected frontends, or buffers the data if
3064
3103
  * `Network.streamResourceContent` command was not invoked for the given request yet.
3104
+ *
3105
+ * Also enables `Network.getResponseBody` command to retrieve the response data.
3065
3106
  * @since v24.2.0
3066
3107
  */
3067
3108
  function dataReceived(params: DataReceivedEventDataType): void;
3109
+ /**
3110
+ * This feature is only available with the `--experimental-network-inspection` flag enabled.
3111
+ *
3112
+ * Enables `Network.getRequestPostData` command to retrieve the request data.
3113
+ * @since v24.3.0
3114
+ */
3115
+ function dataSent(params: unknown): void;
3068
3116
  /**
3069
3117
  * This feature is only available with the `--experimental-network-inspection` flag enabled.
3070
3118
  *
@@ -3450,6 +3498,14 @@ declare module 'inspector/promises' {
3450
3498
  * Enables network tracking, network events will now be delivered to the client.
3451
3499
  */
3452
3500
  post(method: 'Network.enable'): Promise<void>;
3501
+ /**
3502
+ * Returns post data sent with the request. Returns an error when no data was sent with the request.
3503
+ */
3504
+ post(method: 'Network.getRequestPostData', params?: Network.GetRequestPostDataParameterType): Promise<Network.GetRequestPostDataReturnType>;
3505
+ /**
3506
+ * Returns content served for the given request.
3507
+ */
3508
+ post(method: 'Network.getResponseBody', params?: Network.GetResponseBodyParameterType): Promise<Network.GetResponseBodyReturnType>;
3453
3509
  /**
3454
3510
  * Enables streaming of the response for the given requestId.
3455
3511
  * If enabled, the dataReceived event contains the data that was received during streaming.
node/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/node",
3
- "version": "24.2.1",
3
+ "version": "24.3.1",
4
4
  "description": "TypeScript definitions for node",
5
5
  "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node",
6
6
  "license": "MIT",
@@ -150,6 +150,6 @@
150
150
  "undici-types": "~7.10.0"
151
151
  },
152
152
  "peerDependencies": {},
153
- "typesPublisherContentHash": "c642826dc621e8df9fa43f5471ad2dd77883f4fff1a3c22d8d18322f596ed09d",
153
+ "typesPublisherContentHash": "178c30a76a74f3afb6f7d4e412cd6957c2fb4bb51e6666143a72508c73a154c7",
154
154
  "typeScriptVersion": "5.2"
155
155
  }