@types/node 16.11.25 → 16.11.26

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.11/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: Mon, 14 Feb 2022 19:31:27 GMT
11
+ * Last updated: Thu, 24 Feb 2022 16:01:42 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.11.25",
3
+ "version": "16.11.26",
4
4
  "description": "TypeScript definitions for Node.js",
5
5
  "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node",
6
6
  "license": "MIT",
@@ -220,6 +220,6 @@
220
220
  },
221
221
  "scripts": {},
222
222
  "dependencies": {},
223
- "typesPublisherContentHash": "81b53b1d7f371f994592a87c3675bb00c9d5a724650aa2cd5ef3f7797f233245",
223
+ "typesPublisherContentHash": "63c87af1b4a1ad18c2f2e8427d7294568469619a7c75a7a1b042fcb7439b01ce",
224
224
  "typeScriptVersion": "3.8"
225
225
  }
@@ -162,7 +162,8 @@ declare module 'stream/web' {
162
162
  pipeThrough<T>(transform: ReadableWritablePair<T, R>, options?: StreamPipeOptions): ReadableStream<T>;
163
163
  pipeTo(destination: WritableStream<R>, options?: StreamPipeOptions): Promise<void>;
164
164
  tee(): [ReadableStream<R>, ReadableStream<R>];
165
- [Symbol.asyncIterator](options?: { preventCancel?: boolean }): AsyncIterableIterator<R>;
165
+ values(options?: { preventCancel?: boolean }): AsyncIterableIterator<R>;
166
+ [Symbol.asyncIterator](): AsyncIterableIterator<R>;
166
167
  }
167
168
 
168
169
  const ReadableStream: {