interface ReadableStream
private
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.
readonly
locked: booleancancel(reason?: any): Promise<void>getReader(options: { mode: "byob"; }): ReadableStreamBYOBReadergetReader(options?: ReadableStreamGetReaderOptions): ReadableStreamReader<R>pipeThrough<T>(transform: ReadableWritablePair<T, R>,options?: StreamPipeOptions,): ReadableStream<T>pipeTo(destination: WritableStream<R>,options?: StreamPipeOptions,): Promise<void>tee(): [ReadableStream<R>, ReadableStream<R>]values(options?: ReadableStreamIteratorOptions): AsyncIterableIterator<R>[[Symbol.asyncIterator]](options?: ReadableStreamIteratorOptions): AsyncIterableIterator<R>