Implement type CheckRepeatedChars<T> which will return whether type T contains duplicated member
CheckRepeatedChars<T>
T
For example:
type CheckRepeatedTuple<[1, 2, 3]> // false type CheckRepeatedTuple<[1, 2, 1]> // true