UNPKG

rxjs

Version:

Reactive Extensions for modern JavaScript

11 lines (8 loc) 268 B
import { Observable } from '../../Observable'; import { timeInterval } from '../../operator/timeInterval'; Observable.prototype.timeInterval = timeInterval; declare module '../../Observable' { interface Observable<T> { timeInterval: typeof timeInterval; } }