@types/node 25.9.0 → 25.9.1

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.
Files changed (3) hide show
  1. node/README.md +1 -1
  2. node/package.json +2 -2
  3. node/stream/iter.d.ts +4 -1
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, 18 May 2026 12:43:58 GMT
11
+ * Last updated: Tue, 19 May 2026 17:48:56 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": "25.9.0",
3
+ "version": "25.9.1",
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": "2c46dd4d6ce51acbd418cda854101b97987beaea870ba7b8c1a22436b4a0a28c",
153
+ "typesPublisherContentHash": "2546f5f588e15fc9aa202a3005dab2859d006fd48a8448107741e5ce184e9098",
154
154
  "typeScriptVersion": "5.3"
155
155
  }
node/stream/iter.d.ts CHANGED
@@ -111,7 +111,10 @@ declare module "node:stream/iter" {
111
111
  signal: AbortSignal;
112
112
  }
113
113
  interface StatelessTransformFn {
114
- (chunks: Uint8Array[] | null, options: TransformCallbackOptions): TransformResult | null;
114
+ (
115
+ chunks: Uint8Array[] | null,
116
+ options: TransformCallbackOptions,
117
+ ): Promise<TransformResult | null> | TransformResult | null;
115
118
  }
116
119
  interface SyncStatelessTransformFn {
117
120
  (chunks: Uint8Array[] | null): SyncTransformResult | null;