19. implement FirstItem<T>

TypeScript

  -通过 / -执行

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

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

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