Front end of the Slack clone application.

withLatestFrom.d.ts 185B

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