Front end of the Slack clone application.

concat.d.ts 153B

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