throw.d.ts 183 B

123456
  1. import { throwError as staticThrowError } from 'rxjs';
  2. declare module 'rxjs/internal/Observable' {
  3. namespace Observable {
  4. let throwError: typeof staticThrowError;
  5. }
  6. }