Front end of the Slack clone application.

distinct.d.ts 161B

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