Front end of the Slack clone application.

switch.d.ts 188B

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