@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 +1 -1
- package/asynciterable.d.ts +2 -23
- package/index.d.ts +608 -22
- package/iterable.d.ts +2 -553
- package/package.json +6 -1
- package/ts5.5/index.d.ts +25 -22
- package/ts5.6/index.d.ts +25 -22
- package/ts5.9/asynciterable.d.ts +23 -0
- package/ts5.9/index.d.ts +40175 -0
- package/ts5.9/iterable.d.ts +553 -0
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.
|
|
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.
|
package/asynciterable.d.ts
CHANGED
|
@@ -1,23 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
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.
|