CartesianProductTuple: {
    -readonly [K in keyof T]: T[K] extends ArrayLike<infer U> ? U : never
}

Represents a tuple of cartesian product elements for a set of input arrays.

The tuple type corresponds to an element from each of the input arrays in the cartesian product.

Type Parameters

  • T extends InputArrays

    The type of the input arrays.