UNPKG

@codibre/fluent-iterable

Version:

Provides LINQ-like fluent api operations for iterables and async iterables (ES2018+).

4 lines (3 loc) 235 B
import { AnyIterable } from 'augmentative-iterable'; import { AsyncCatchCallback } from '../types'; export declare function catchAsync<T>(this: AnyIterable<T>, errorCallback: AsyncCatchCallback): AsyncGenerator<Awaited<T>, void, any>;