Interface ToReadableStreamOptions
interface ToReadableStreamOptions {
autoClose?: boolean;
chunkSize?: number;
strategy?: QueuingStrategy<Uint8Array>;
}
autoClose?: boolean;
chunkSize?: number;
strategy?: QueuingStrategy<Uint8Array>;
}
Index
Properties
Properties
OptionalautoClose
autoClose ?: boolean
If the reader is also a Closer, automatically close the reader
when EOF is encountered, or a read error occurs.
OptionalchunkSize
chunkSize ?: number
The size of chunks to allocate to read.
Optionalstrategy
strategy?: QueuingStrategy<Uint8Array>
The queuing strategy to create the ReadableStream with.
Options for
toReadableStream.