Front end of the Slack clone application.

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