@types/node 18.19.102 → 18.19.104

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 v18.19/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/v18.
9
9
 
10
10
  ### Additional Details
11
- * Last updated: Tue, 20 May 2025 17:35:34 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 v18.19/http.d.ts CHANGED
@@ -95,6 +95,10 @@ declare module "http" {
95
95
  range?: string | undefined;
96
96
  referer?: string | undefined;
97
97
  "retry-after"?: string | undefined;
98
+ "sec-fetch-site"?: string | undefined;
99
+ "sec-fetch-mode"?: string | undefined;
100
+ "sec-fetch-user"?: string | undefined;
101
+ "sec-fetch-dest"?: string | undefined;
98
102
  "sec-websocket-accept"?: string | undefined;
99
103
  "sec-websocket-extensions"?: string | undefined;
100
104
  "sec-websocket-key"?: string | undefined;
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/node",
3
- "version": "18.19.102",
3
+ "version": "18.19.104",
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": "~5.26.4"
221
221
  },
222
222
  "peerDependencies": {},
223
- "typesPublisherContentHash": "321ca6ca36f083d471c0b4b2d550e0caa49c34ce6634f635aeb1beab8db5702c",
223
+ "typesPublisherContentHash": "acf2fd1efd96db993b4d0a83218ea7ca0e897af0195236ee5e0ffc3eef152c72",
224
224
  "typeScriptVersion": "5.1"
225
225
  }
node v18.19/stream.d.ts CHANGED
@@ -729,6 +729,12 @@ declare module "stream" {
729
729
  * @since v11.4.0
730
730
  */
731
731
  readonly writable: boolean;
732
+ /**
733
+ * Returns whether the stream was destroyed or errored before emitting `'finish'`.
734
+ * @since v18.0.0, v16.17.0
735
+ * @experimental
736
+ */
737
+ readonly writableAborted: boolean;
732
738
  /**
733
739
  * Is `true` after `writable.end()` has been called. This property
734
740
  * does not indicate whether the data has been flushed, for this use `writable.writableFinished` instead.