Front end of the Slack clone application.

publishLast.d.ts 173B

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