Pushes a value to the front of a tuple type.
The tail of the tuple.
The head to push to the front.
type Original = [number, string];type Mutated = PushFront<Original, boolean>; // [boolean, number, string] Copy
type Original = [number, string];type Mutated = PushFront<Original, boolean>; // [boolean, number, string]
Pushes a value to the front of a tuple type.