publishReplay.d.ts 181 B

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