@types/web 0.0.271 → 0.0.273

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.
package/README.md CHANGED
@@ -47,4 +47,4 @@ Prior to `@types/web` the web APIs were deployed with a version of TypeScript, a
47
47
 
48
48
  ## Deploy Metadata
49
49
 
50
- You can read what changed in version 0.0.271 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fweb%400.0.271.
50
+ You can read what changed in version 0.0.273 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fweb%400.0.273.
@@ -1,23 +1,2 @@
1
- /////////////////////////////
2
- /// Window Async Iterable APIs
3
- /////////////////////////////
4
-
5
- interface FileSystemDirectoryHandleAsyncIterator<T> extends AsyncIteratorObject<T, BuiltinIteratorReturn, unknown> {
6
- [Symbol.asyncIterator](): FileSystemDirectoryHandleAsyncIterator<T>;
7
- }
8
-
9
- interface FileSystemDirectoryHandle {
10
- [Symbol.asyncIterator](): FileSystemDirectoryHandleAsyncIterator<[string, FileSystemHandle]>;
11
- entries(): FileSystemDirectoryHandleAsyncIterator<[string, FileSystemHandle]>;
12
- keys(): FileSystemDirectoryHandleAsyncIterator<string>;
13
- values(): FileSystemDirectoryHandleAsyncIterator<FileSystemHandle>;
14
- }
15
-
16
- interface ReadableStreamAsyncIterator<T> extends AsyncIteratorObject<T, BuiltinIteratorReturn, unknown> {
17
- [Symbol.asyncIterator](): ReadableStreamAsyncIterator<T>;
18
- }
19
-
20
- interface ReadableStream<R = any> {
21
- [Symbol.asyncIterator](options?: ReadableStreamIteratorOptions): ReadableStreamAsyncIterator<R>;
22
- values(options?: ReadableStreamIteratorOptions): ReadableStreamAsyncIterator<R>;
23
- }
1
+ // This file's contents are now included in the main types file.
2
+ // The file has been left for backward compatibility.