@types/node 25.9.5 → 25.9.6
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 v25.9/README.md +1 -1
- node v25.9/package.json +2 -2
- node v25.9/web-globals/streams.d.ts +4 -0
node v25.9/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/v25.
|
|
9
9
|
|
|
10
10
|
### Additional Details
|
|
11
|
-
* Last updated: Wed,
|
|
11
|
+
* Last updated: Wed, 09 Sep 2026 18:05:03 GMT
|
|
12
12
|
* Dependencies: [undici-types](https://npmjs.com/package/undici-types)
|
|
13
13
|
|
|
14
14
|
# Credits
|
node v25.9/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/node",
|
|
3
|
-
"version": "25.9.
|
|
3
|
+
"version": "25.9.6",
|
|
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.24.0 <7.24.7"
|
|
151
151
|
},
|
|
152
152
|
"peerDependencies": {},
|
|
153
|
-
"typesPublisherContentHash": "
|
|
153
|
+
"typesPublisherContentHash": "6e54b9cd107fff2664f47e8a519105dc481eb454648b0ee5cbac78226f5e2478",
|
|
154
154
|
"typeScriptVersion": "5.6"
|
|
155
155
|
}
|
|
@@ -19,6 +19,8 @@ type _ReadableStreamDefaultController<R = any> = typeof globalThis extends { onm
|
|
|
19
19
|
: webstreams.ReadableStreamDefaultController<R>;
|
|
20
20
|
type _ReadableStreamDefaultReader<R = any> = typeof globalThis extends { onmessage: any } ? {}
|
|
21
21
|
: webstreams.ReadableStreamDefaultReader<R>;
|
|
22
|
+
type _ReadableWritablePair<R = any, W = any> = typeof globalThis extends { onmessage: any } ? {}
|
|
23
|
+
: webstreams.ReadableWritablePair<R, W>;
|
|
22
24
|
type _TextDecoderStream = typeof globalThis extends { onmessage: any } ? {} : webstreams.TextDecoderStream;
|
|
23
25
|
type _TextEncoderStream = typeof globalThis extends { onmessage: any } ? {} : webstreams.TextEncoderStream;
|
|
24
26
|
type _TransformStream<I = any, O = any> = typeof globalThis extends { onmessage: any } ? {}
|
|
@@ -82,6 +84,8 @@ declare global {
|
|
|
82
84
|
? T
|
|
83
85
|
: typeof webstreams.ReadableStreamDefaultReader;
|
|
84
86
|
|
|
87
|
+
interface ReadableWritablePair<R = any, W = any> extends _ReadableWritablePair<R, W> {}
|
|
88
|
+
|
|
85
89
|
interface TextDecoderStream extends _TextDecoderStream {}
|
|
86
90
|
var TextDecoderStream: typeof globalThis extends { onmessage: any; TextDecoderStream: infer T } ? T
|
|
87
91
|
: typeof webstreams.TextDecoderStream;
|