toArray.d.ts 165 B

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