wishthis/node_modules/rxjs/internal/operators/catchError.d.ts

4 lines
289 B
TypeScript
Raw Normal View History

2022-01-21 08:28:41 +00:00
import { Observable } from '../Observable';
import { ObservableInput, OperatorFunction, ObservedValueOf } from '../types';
export declare function catchError<T, O extends ObservableInput<any>>(selector: (err: any, caught: Observable<T>) => O): OperatorFunction<T, T | ObservedValueOf<O>>;