@types/node 20.17.35 → 20.17.36

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 v20.17/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/v20.
9
9
 
10
10
  ### Additional Details
11
- * Last updated: Mon, 05 May 2025 20:35:19 GMT
11
+ * Last updated: Mon, 05 May 2025 21:02:40 GMT
12
12
  * Dependencies: [undici-types](https://npmjs.com/package/undici-types)
13
13
 
14
14
  # Credits
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/node",
3
- "version": "20.17.35",
3
+ "version": "20.17.36",
4
4
  "description": "TypeScript definitions for node",
5
5
  "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node",
6
6
  "license": "MIT",
@@ -215,6 +215,6 @@
215
215
  "undici-types": "~6.19.2"
216
216
  },
217
217
  "peerDependencies": {},
218
- "typesPublisherContentHash": "61084644f75ee2aa54eff7440536ebd5a080163fbdb88c034d9ee7033d16bf6e",
218
+ "typesPublisherContentHash": "211e3425c1925b58b234ecf9c51a1845814526e356bb79f060b29fc72b5e4d50",
219
219
  "typeScriptVersion": "5.1"
220
220
  }
@@ -97,7 +97,7 @@ declare module "stream/web" {
97
97
  signal?: AbortSignal;
98
98
  }
99
99
  interface ReadableStreamGenericReader {
100
- readonly closed: Promise<undefined>;
100
+ readonly closed: Promise<void>;
101
101
  cancel(reason?: any): Promise<void>;
102
102
  }
103
103
  type ReadableStreamController<T> = ReadableStreamDefaultController<T>;
@@ -307,9 +307,9 @@ declare module "stream/web" {
307
307
  * sink.
308
308
  */
309
309
  interface WritableStreamDefaultWriter<W = any> {
310
- readonly closed: Promise<undefined>;
310
+ readonly closed: Promise<void>;
311
311
  readonly desiredSize: number | null;
312
- readonly ready: Promise<undefined>;
312
+ readonly ready: Promise<void>;
313
313
  abort(reason?: any): Promise<void>;
314
314
  close(): Promise<void>;
315
315
  releaseLock(): void;