Tail Removes the first element of a tuple type T. Example type Arr = ['1', '2', '3', '4']; type Result = Tail<Arr>; // expected to be ['2', '3', '4']