The type of elements in the tuple.
The desired length of the tuple (must be a non-negative integer literal).
type TupleOf3Strings = MakeTuple<string, 3>; // readonly [string, string, string]
type TupleOf0Numbers = MakeTuple<number, 0>; // readonly []
// type InvalidLength = MakeTuple<boolean, -1>; // Error or unexpected result
// type InvalidLength2 = MakeTuple<boolean, 1.5>; // Error or unexpected result
Creates a readonly tuple type of a specific length
Nwith elements of typeElm.