zipAll.d.ts 161 B

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