Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

catchError.d.ts 289B

123
  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>>;