import { type ToReadableStreamOptions } from "https://deno.land/std@0.220.0/io/to_readable_stream.ts";
Options for toReadableStream
.
Properties
If the reader
is also a Closer
, automatically close the reader
when EOF
is encountered, or a read error occurs.
The size of chunks to allocate to read, the default is ~16KiB, which is the maximum size that Deno operations can currently support.
optional
strategy: QueuingStrategy<Uint8Array>The queuing strategy to create the ReadableStream
with.