Front end of the Slack clone application.

subscribeOn.d.ts 173B

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