UNPKG

combinate

Version:

Type safe combinatorics utility for getting all combinations.

3 lines (2 loc) 141 B
declare function combinate<O extends Record<string | number, any[]>>(obj: O): { [k in keyof O]: O[k][number]; }[]; export default combinate;