Get all but the first element of a tuple.
Tuple type
Extracts a new tuple type containing all elements except the first.
type H = TupleTail< [ number, string, boolean ] >;// [ string, boolean ] Copy
type H = TupleTail< [ number, string, boolean ] >;// [ string, boolean ]
Get all but the first element of a tuple.