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

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

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