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: boolean
      
    
cancel(reason?: any): Promise<void>
      
    
getReader(options: { mode: "byob";  }): ReadableStreamBYOBReader
      
    
getReader(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>