Interface UnderlyingDefaultSource<R>

    interface UnderlyingDefaultSource<R = any> {
        cancel?: UnderlyingSourceCancelCallback;
        pull?: (
            controller: ReadableStreamDefaultController<R>,
        ) => void | PromiseLike<void>;
        start?: (controller: ReadableStreamDefaultController<R>) => any;
        type?: undefined;
    }

    Type Parameters

    • R = any

    Properties

    pull?: (
        controller: ReadableStreamDefaultController<R>,
    ) => void | PromiseLike<void>
    start?: (controller: ReadableStreamDefaultController<R>) => any
    type?: undefined