UNPKG

cartesian-product-multiple-arrays

Version:

Find the cartesian product of multiple arrays.

3 lines (2 loc) 192 B
export declare function cartesianProduct(...arrayOfArrays: any[][]): any[][] | never; export declare function cartesianProductGenerator(...arrayOfArrays: any[][]): Generator<any[][] | never>;