Static methods
Constructor
Variables
Methods
cancel(?reason:Any):Promise<Void>
Cancels the stream, signaling a reason why consumer is no longer interested.
getReader(?options:Any):ReadableStreamDefaultReader
getReader(options:{mode:String}):ReadableStreamBYOBReader
Creates a reader and locks this stream to it.
When options.mode is "byob", returns a ReadableStreamBYOBReader.
pipeThrough(transform:ReadableWritablePair, ?options:StreamPipeOptions):ReadableStream
Pipes this readable stream through a transform stream pair.
pipeTo(destination:WritableStream, ?options:StreamPipeOptions):Promise<Void>
Pipes this readable stream to a writable stream.