Front end of the Slack clone application.

shareReplay.d.ts 173B

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