Giant blob of minor changes
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / rxjs / internal / operators / catchError.d.ts
1 import { Observable } from '../Observable';
2 import { ObservableInput, OperatorFunction, ObservedValueOf } from '../types';
3 export declare function catchError<T, O extends ObservableInput<any>>(selector: (err: any, caught: Observable<T>) => O): OperatorFunction<T, T | ObservedValueOf<O>>;