@types/node 25.9.5 → 25.9.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 v25.9/README.md +1 -1
- node v25.9/child_process.d.ts +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:
|
|
11
|
+
* Last updated: Tue, 15 Sep 2026 20:33:28 GMT
|
|
12
12
|
* Dependencies: [undici-types](https://npmjs.com/package/undici-types)
|
|
13
13
|
|
|
14
14
|
# Credits
|
node v25.9/child_process.d.ts
CHANGED
|
@@ -1143,7 +1143,7 @@ declare module "node:child_process" {
|
|
|
1143
1143
|
stderr: string | NonSharedBuffer;
|
|
1144
1144
|
}>;
|
|
1145
1145
|
}
|
|
1146
|
-
interface ForkOptions extends
|
|
1146
|
+
interface ForkOptions extends CommonOptions, MessagingOptions, Abortable {
|
|
1147
1147
|
execPath?: string | undefined;
|
|
1148
1148
|
execArgv?: string[] | undefined;
|
|
1149
1149
|
silent?: boolean | undefined;
|
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.7",
|
|
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": "e52c9cfcb12c39913d278e14cca001699c5c1d16442ea44f0c46d185387275d3",
|
|
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;
|