publishBehavior.d.ts 189 B

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