shareReplay.d.ts 173 B

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