throttle.d.ts 161 B

123456
  1. import { throttle } from '../../operator/throttle';
  2. declare module '../../Observable' {
  3. interface Observable<T> {
  4. throttle: typeof throttle;
  5. }
  6. }