summaryrefslogtreecommitdiff
path: root/cli/tsc/dts/lib.webworker.asynciterable.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tsc/dts/lib.webworker.asynciterable.d.ts')
-rw-r--r--cli/tsc/dts/lib.webworker.asynciterable.d.ts5
1 files changed, 5 insertions, 0 deletions
diff --git a/cli/tsc/dts/lib.webworker.asynciterable.d.ts b/cli/tsc/dts/lib.webworker.asynciterable.d.ts
index 421a6b9dc..86de21097 100644
--- a/cli/tsc/dts/lib.webworker.asynciterable.d.ts
+++ b/cli/tsc/dts/lib.webworker.asynciterable.d.ts
@@ -26,3 +26,8 @@ interface FileSystemDirectoryHandle {
keys(): AsyncIterableIterator<string>;
values(): AsyncIterableIterator<FileSystemHandle>;
}
+
+interface ReadableStream<R = any> {
+ [Symbol.asyncIterator](options?: ReadableStreamIteratorOptions): AsyncIterableIterator<R>;
+ values(options?: ReadableStreamIteratorOptions): AsyncIterableIterator<R>;
+}