23. implement LengthOfTuple<T>
分享给更多人
-通过 / -执行
请实现LengthOfTuple<T>
返回tuple type的长度。
type A = LengthOfTuple<['B', 'F', 'E']> // 3type B = LengthOfTuple<[]> // 0
-通过 / -执行
请实现LengthOfTuple<T>
返回tuple type的长度。
type A = LengthOfTuple<['B', 'F', 'E']> // 3type B = LengthOfTuple<[]> // 0