Front end of the Slack clone application.

switchAll.d.ts 170B

1234
  1. import { OperatorFunction } from '../interfaces';
  2. import { Observable } from '../Observable';
  3. export declare function switchAll<T>(): OperatorFunction<Observable<T>, T>;