interface ReadableStreamFromReaderOptionsimport { type ReadableStreamFromReaderOptions } from "https://dotland.deno.dev/std@0.110.0/io/streams.ts"; PropertiesoptionalautoClose: booleanIf the reader is also a Deno.Closer, automatically close the reader when EOF is encountered, or a read error occurs. Defaults to true. optionalchunkSize: numberThe size of chunks to allocate to read, the default is ~16KiB, which is the maximum size that Deno operations can currently support. optionalstrategy: { highWaterMark?: number | undefined; size?: undefined; }The queuing strategy to create the ReadableStream with.