Front end of the Slack clone application.

throttle.d.ts 161B

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