Front end of the Slack clone application.

debounce.d.ts 161B

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