interface UnderlyingSource<R> {
    cancel?: UnderlyingSourceCancelCallback;
    pull?: UnderlyingSourcePullCallback<R>;
    start?: UnderlyingSourceStartCallback<R>;
    type?: undefined;
}

Type Parameters

  • R = any

Properties

type?: undefined

Generated using TypeDoc