ix
Version:
The Interactive Extensions for JavaScript
11 lines (10 loc) • 319 B
TypeScript
import { IterableX } from '../../iterable/iterablex.js';
/**
* @ignore
*/
export declare function catchErrorProto<T, R>(this: IterableX<T>, fn: (error: any) => Iterable<R>): IterableX<T | R>;
declare module '../../iterable/iterablex' {
interface IterableX<T> {
catchError: typeof catchErrorProto;
}
}