Front end of the Slack clone application.

combineLatest.d.ts 181B

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