throttle.d.ts 161 Bytes
Newer Older
patcharaporn's avatar
patcharaporn committed
1 2 3 4 5 6
import { throttle } from '../../operator/throttle';
declare module '../../Observable' {
    interface Observable<T> {
        throttle: typeof throttle;
    }
}