Represents a mutable structural tuple that is guaranteed to have at least one element.
The type of elements in the array.
type NA = MutableNonEmptyTuple<string>; // [string, ...string[]]const valid: NA = ["hello"];const alsoValid: NA = ["hello", "world"];// const invalid: NA = []; // Error Copy
type NA = MutableNonEmptyTuple<string>; // [string, ...string[]]const valid: NA = ["hello"];const alsoValid: NA = ["hello", "world"];// const invalid: NA = []; // Error
Represents a mutable structural tuple that is guaranteed to have at least one element.