String to Union medium #union #string

by Andrey Krasovsky @bre30kra69cs

Take the Challenge    简体中文 日本語 한국어

Implement the String to Union type. Type take string argument. The output should be a union of input letters For example ```ts type Test = "123" type Result = StringToUnion // expected to be "1" | "2" | "3" ```
Back Share your Solutions Check out Solutions