//#region src/array/zip.d.ts /** * Creates an array of grouped elements, the first of which contains the first elements of the given arrays * @param arrays The arrays to process * @returns A new array of grouped elements * @example * zip(['a', 'b', 'c'], [1, 2, 3]); // [['a', 1], ['b', 2], ['c', 3]] * zip(['a', 'b'], [1, 2, 3]); // [['a', 1], ['b', 2]] */ declare function zip(...arrays: T[][]): T[][]; //#endregion export { zip }; //# sourceMappingURL=zip.d.cts.map