UNPKG

@reactivex/rxjs

Version:

Reactive Extensions for modern JavaScript

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