Prepend an element to the beginning of a tuple.
Tuple type
Element to prepend
1.1.0
Creates a new tuple type with the specified element added at the start.
type Tup = [ number, string ];type Prepended = TuplePrepend< Tup, boolean >;// [ boolean, number, string ] Copy
type Tup = [ number, string ];type Prepended = TuplePrepend< Tup, boolean >;// [ boolean, number, string ]
Prepend an element to the beginning of a tuple.