diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2024-07-03 15:09:54 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-03 16:09:54 +0200 |
commit | 3242e2718fdbbdb6d1855c0f694e816f9af3f09c (patch) | |
tree | ee058f886a717a1571d247ef94d95ace14ef4055 /cli/tsc/dts/lib.webworker.asynciterable.d.ts | |
parent | 496ea5903bbe8e86185c30fc6f478b0092d64d65 (diff) |
feat: Upgrade to TypeScript 5.5.2 (#24326)
This commit upgrades TypeScript to 5.5.2.
https://devblogs.microsoft.com/typescript/announcing-typescript-5-5/
Diffstat (limited to 'cli/tsc/dts/lib.webworker.asynciterable.d.ts')
-rw-r--r-- | cli/tsc/dts/lib.webworker.asynciterable.d.ts | 5 |
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>; +} |