@types/node 22.15.6 → 22.15.7
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/README.md +1 -1
- node/package.json +2 -2
- node/stream/web.d.ts +3 -3
node/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.
|
9
9
|
|
10
10
|
### Additional Details
|
11
|
-
* Last updated: Mon, 05 May 2025
|
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
|
node/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@types/node",
|
3
|
-
"version": "22.15.
|
3
|
+
"version": "22.15.7",
|
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": "~6.21.0"
|
221
221
|
},
|
222
222
|
"peerDependencies": {},
|
223
|
-
"typesPublisherContentHash": "
|
223
|
+
"typesPublisherContentHash": "13b8f49d41ffb643d1aac1f03379392f652cc16ce419217f4de4dbe2c212e6bf",
|
224
224
|
"typeScriptVersion": "5.1"
|
225
225
|
}
|
node/stream/web.d.ts
CHANGED
@@ -97,7 +97,7 @@ declare module "stream/web" {
|
|
97
97
|
signal?: AbortSignal;
|
98
98
|
}
|
99
99
|
interface ReadableStreamGenericReader {
|
100
|
-
readonly closed: Promise<
|
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<
|
310
|
+
readonly closed: Promise<void>;
|
311
311
|
readonly desiredSize: number | null;
|
312
|
-
readonly ready: Promise<
|
312
|
+
readonly ready: Promise<void>;
|
313
313
|
abort(reason?: any): Promise<void>;
|
314
314
|
close(): Promise<void>;
|
315
315
|
releaseLock(): void;
|