Giant blob of minor changes
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / rxjs / internal / operators / zipAll.d.ts
1 import { OperatorFunction, ObservableInput } from '../types';
2 export declare function zipAll<T>(): OperatorFunction<ObservableInput<T>, T[]>;
3 export declare function zipAll<T>(): OperatorFunction<any, T[]>;
4 export declare function zipAll<T, R>(project: (...values: T[]) => R): OperatorFunction<ObservableInput<T>, R>;
5 export declare function zipAll<R>(project: (...values: Array<any>) => R): OperatorFunction<any, R>;