19. implement FirstItem<T>

  -通过 / -执行

16. FirstChar<T>类似,请实现FirstItem<T>来返回tuple type的第一个type。

type A = FirstItem<[string, number, boolean]> // string
type B = FirstItem<['B', 'F', 'E']> // 'B'

争取5分钟以内搞定这个问题

(1)
(26)