UNPKG

rxjs-es

Version:

Reactive Extensions for modern JavaScript

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