github-pages-deploy-action/node_modules/rxjs/internal/operators/catchError.d.ts

4 lines
289 B
TypeScript
Raw Normal View History

2020-03-07 11:45:40 +08: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>>;