@types/node 16.18.23 → 16.18.24

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 v16.18/README.md CHANGED
@@ -8,7 +8,7 @@ This package contains type definitions for Node.js (https://nodejs.org/).
8
8
  Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node/v16.
9
9
 
10
10
  ### Additional Details
11
- * Last updated: Thu, 30 Mar 2023 01:03:07 GMT
11
+ * Last updated: Wed, 19 Apr 2023 23:02:50 GMT
12
12
  * Dependencies: none
13
13
  * Global values: `AbortController`, `AbortSignal`, `__dirname`, `__filename`, `console`, `exports`, `gc`, `global`, `module`, `process`, `require`
14
14
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/node",
3
- "version": "16.18.23",
3
+ "version": "16.18.24",
4
4
  "description": "TypeScript definitions for Node.js",
5
5
  "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node",
6
6
  "license": "MIT",
@@ -227,6 +227,6 @@
227
227
  },
228
228
  "scripts": {},
229
229
  "dependencies": {},
230
- "typesPublisherContentHash": "408d5b1d76dfcbca627d5440fc9a06ed2c9a387261b4475671b872670677bcc2",
230
+ "typesPublisherContentHash": "66fec62786e1345b4a59957f39828e811ceda6deba2f3f3ff047861f14d06b41",
231
231
  "typeScriptVersion": "4.3"
232
232
  }
node v16.18/stream.d.ts CHANGED
@@ -1126,7 +1126,8 @@ declare module 'stream' {
1126
1126
  : (err: NodeJS.ErrnoException | null) => void;
1127
1127
  type PipelinePromise<S extends PipelineDestination<any, any>> = S extends PipelineDestinationPromiseFunction<any, infer P> ? Promise<P> : Promise<void>;
1128
1128
  interface PipelineOptions {
1129
- signal: AbortSignal;
1129
+ signal?: AbortSignal | undefined;
1130
+ end?: boolean | undefined;
1130
1131
  }
1131
1132
  /**
1132
1133
  * A module method to pipe between streams and generators forwarding errors and
@@ -1126,7 +1126,8 @@ declare module 'stream' {
1126
1126
  : (err: NodeJS.ErrnoException | null) => void;
1127
1127
  type PipelinePromise<S extends PipelineDestination<any, any>> = S extends PipelineDestinationPromiseFunction<any, infer P> ? Promise<P> : Promise<void>;
1128
1128
  interface PipelineOptions {
1129
- signal: AbortSignal;
1129
+ signal?: AbortSignal | undefined;
1130
+ end?: boolean | undefined;
1130
1131
  }
1131
1132
  /**
1132
1133
  * A module method to pipe between streams and generators forwarding errors and