Creates a type that represents a string with no repeated characters.
The string to process.
The result type, defaulting to an empty array.
type Original = NoRepetition<"abc">; // ["a", "b", "c"] Copy
type Original = NoRepetition<"abc">; // ["a", "b", "c"]
Creates a type that represents a string with no repeated characters.