Front end of the Slack clone application.

pairwise.d.ts 161B

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