import { ReadableStream } from "https://deno.land/x/levo@v0.0.27/lib/lib.deno_runtime.d.ts";
type
{ prototype: ReadableStream; new (underlyingSource: UnderlyingByteSource, strategy?: { highWaterMark?: number; size?: undefined; }): ReadableStream<Uint8Array>; new <R = any>(underlyingSource?: UnderlyingSource<R>, strategy?: QueuingStrategy<R>): ReadableStream<R>; }