Front end of the Slack clone application.

throttleTime.d.ts 177B

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