UNPKG

163 BTypeScriptView Raw
1export declare function withCancel<T>(asyncIteratorLike: {
2 [Symbol.asyncIterator](): AsyncIterator<T>;
3}, onCancel: () => void): AsyncIterator<T | undefined>;