Mutable version of BoundedLengthTuple. Creates a mutable tuple type whose length is between Min and Max (both inclusive).
Min
Max
The minimum length (inclusive). Must be a non-negative integer literal.
The maximum length (inclusive). Must be a non-negative integer literal.
The type of elements in the tuple.
type T = MutableBoundedLengthTuple<1, 2, number>; // [number] | [number, number] Copy
type T = MutableBoundedLengthTuple<1, 2, number>; // [number] | [number, number]
Mutable version of BoundedLengthTuple. Creates a mutable tuple type whose length is between
MinandMax(both inclusive).