timeInterval.d.ts 177 B

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