Front end of the Slack clone application.

expand.d.ts 153B

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