@types/node 20.17.50 → 20.17.51

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 v20.17/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/v20.
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/node",
3
- "version": "20.17.50",
3
+ "version": "20.17.51",
4
4
  "description": "TypeScript definitions for node",
5
5
  "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node",
6
6
  "license": "MIT",
@@ -215,6 +215,6 @@
215
215
  "undici-types": "~6.19.2"
216
216
  },
217
217
  "peerDependencies": {},
218
- "typesPublisherContentHash": "54d753d629b4c086700669f5792ec798007247c341fb4c90bda11c64170b214d",
218
+ "typesPublisherContentHash": "4703c939186d63b96b8e21a6a0e93eb084907c7d7a772d14dda62fad030323dc",
219
219
  "typeScriptVersion": "5.1"
220
220
  }
node v20.17/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.