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

Properties

autoAllocateChunkSize?: number
pull?: ((controller) => void | PromiseLike<void>)

Type declaration

start?: ((controller) => any)

Type declaration

type: "bytes"

Generated using TypeDoc