Front end of the Slack clone application.

zipAll.d.ts 152B

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