UNPKG

rxjs

Version:

Reactive Extensions for modern JavaScript

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