Front end of the Slack clone application.

publish.d.ts 157B

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