Front end of the Slack clone application.

first.d.ts 149B

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