Front end of the Slack clone application.

single.d.ts 153B

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