zipAll.d.ts 152 B

12
  1. import { OperatorFunction } from '../interfaces';
  2. export declare function zipAll<T, R>(project?: (...values: Array<any>) => R): OperatorFunction<T, R>;