toArray.d.ts 157 B

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