@types/node 22.15.21 → 22.15.22

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.d.ts +6 -0
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: Tue, 20 May 2025 23:02:19 GMT
11
+ * Last updated: Tue, 27 May 2025 17:34:27 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.21",
3
+ "version": "22.15.22",
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": "5d2f879a002d15b5c339ca2ceae4757f171fe11f54ad330e4325efc50af262a7",
223
+ "typesPublisherContentHash": "9dfe7a25be073d9a58330259517f55bb6e2172c83e0a85a82cbb2753c16d93f9",
224
224
  "typeScriptVersion": "5.1"
225
225
  }
node/stream.d.ts CHANGED
@@ -737,6 +737,12 @@ declare module "stream" {
737
737
  * @since v11.4.0
738
738
  */
739
739
  readonly writable: boolean;
740
+ /**
741
+ * Returns whether the stream was destroyed or errored before emitting `'finish'`.
742
+ * @since v18.0.0, v16.17.0
743
+ * @experimental
744
+ */
745
+ readonly writableAborted: boolean;
740
746
  /**
741
747
  * Is `true` after `writable.end()` has been called. This property
742
748
  * does not indicate whether the data has been flushed, for this use `writable.writableFinished` instead.