/** * returns an array of tuples of certain index elements from two provided arrays * @example * zip([1, 2, 3], [10, 20, 30]) * // returns [[1, 10], [2, 20], [3, 30]] */ export default function zip(arrayA: A[], arrayB: B[]): Array<[A, B]>; //# sourceMappingURL=zip.d.ts.map