Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 171 Bytes

readme.md

File metadata and controls

10 lines (7 loc) · 171 Bytes

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']