Utility type to build a tuple of length L
The desired length of the tuple. The length must be >= 0. TypeScript limits tuples to a maximum length of 999.
The type of each element in the tuple (default: unknown)
A tuple of length L with elements of type T, or never if L is negative.
Utility type to build a tuple of length L