Front end of the Slack clone application.

toArray.d.ts 157B

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