summaryrefslogtreecommitdiff
path: root/cli/tsc/dts/lib.dom.asynciterable.d.ts
blob: 271c60335de20db58ccb263134f73756218cf774 (plain)
1
2
3
4
5
6
7
8
9
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.

/// <reference no-default-lib="true"/>

interface ReadableStream<R = any> {
  [Symbol.asyncIterator](options?: {
    preventCancel?: boolean;
  }): AsyncIterableIterator<R>;
}