Skip to main content
Module

x/evt/lib/index.ts>dom.ReadableStream

💧EventEmitter's typesafe replacement
Go to Latest
interface dom.ReadableStream
import { type dom } from "https://deno.land/x/evt@v2.4.13/lib/index.ts";
const { ReadableStream } = dom;

This Streams API interface represents a readable stream of byte data. The Fetch API offers a concrete instance of a ReadableStream through the body property of a Response object.

Type Parameters

optional
R = any

Properties

readonly
locked: boolean

Methods

cancel(reason?: any): Promise<void>
getReader(options: { mode: "byob"; }): ReadableStreamBYOBReader
pipeThrough<T>(unnamed 0: { writable: WritableStream<R>; readable: ReadableStream<T>; }, options?: PipeOptions): ReadableStream<T>
pipeTo(dest: WritableStream<R>, options?: PipeOptions): Promise<void>