Skip to main content
Module

x/deno/cli/dts/lib.dom.asynciterable.d.ts

A modern runtime for JavaScript and TypeScript.
Go to Latest
File
// 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>;}