switch.d.ts 196 B

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