interface UnderlyingDefaultSource<R> {
    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>)

Type declaration

start?: ((controller: ReadableStreamDefaultController<R>) => any)

Type declaration

type?: undefined