@reactivex/ix-esnext-esm
Version:
The Interactive Extensions for JavaScript
11 lines (10 loc) • 316 B
TypeScript
import { IterableX } from '../../iterable/iterablex';
/**
* @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;
}
}