declare module "@extra-array/cartesian-product.min" { import type { mapFn } from "./_types"; /** * Lists cartesian product of arrays. * @param xs arrays * @param fm map function (vs, i) */ declare function cartesianProduct(xs: T[][], fm?: mapFn): (T[] | U)[]; export = cartesianProduct; //# sourceMappingURL=cartesianProduct.d.ts.map}