@types/node 18.19.90 → 18.19.91

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 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: 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": "18.19.90",
3
+ "version": "18.19.91",
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": "1f6bb0d4d9c32626515d959644db82b40126c419dcb4fd746d763e00bd12e7c6",
223
+ "typesPublisherContentHash": "3ef49e000c8392513da831d67c1d3ac5615cece65b4d43fc46bfeec77d6e8a49",
224
224
  "typeScriptVersion": "5.1"
225
225
  }
@@ -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>;
@@ -301,9 +301,9 @@ declare module "stream/web" {
301
301
  * sink.
302
302
  */
303
303
  interface WritableStreamDefaultWriter<W = any> {
304
- readonly closed: Promise<undefined>;
304
+ readonly closed: Promise<void>;
305
305
  readonly desiredSize: number | null;
306
- readonly ready: Promise<undefined>;
306
+ readonly ready: Promise<void>;
307
307
  abort(reason?: any): Promise<void>;
308
308
  close(): Promise<void>;
309
309
  releaseLock(): void;