Front end of the Slack clone application.

windowTime.d.ts 169B

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