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

Type Parameters

  • R = any

Properties

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

Type declaration

start?: ((controller) => any)

Type declaration

type?: undefined

Generated using TypeDoc