interface UnderlyingByteSource {
    autoAllocateChunkSize?: number;
    cancel?: ((reason: any) => void | Promise<void>);
    pull?: ((controller: ReadableByteStreamController) => void | Promise<void>);
    start?: ((controller: ReadableByteStreamController) => void | Promise<void>);
    type: "bytes";
}

Properties

autoAllocateChunkSize?: number
cancel?: ((reason: any) => void | Promise<void>)
pull?: ((controller: ReadableByteStreamController) => void | Promise<void>)
start?: ((controller: ReadableByteStreamController) => void | Promise<void>)
type