33. implement TupleToString<T>
分享给更多人
-通过 / -执行
Implement TupleToString<T>
to return a new type by concatenating all the string to a new string type.
type A = TupleToString<['a']> // 'a'type B = TupleToString<['B', 'F', 'E']> // 'BFE'type C = TupleToString<[]> // ''