23. implement LengthOfTuple<T>

  -通过 / -执行

请实现LengthOfTuple<T>返回tuple type的长度。

type A = LengthOfTuple<['B', 'F', 'E']> // 3
type B = LengthOfTuple<[]> // 0

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

(18)