Front end of the Slack clone application.

observeOn.d.ts 165B

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