21. implement LastItem<T>

  -通过 / -执行

19. FirstItem<T>类似,请实现LastItem<T>用以返回tuple的最后一个type。

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

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

(1)
(23)