catch.d.ts 182 B

1234567
  1. import { _catch } from '../../operator/catch';
  2. declare module '../../Observable' {
  3. interface Observable<T> {
  4. catch: typeof _catch;
  5. _catch: typeof _catch;
  6. }
  7. }