I have a type that looks like this:
type StrOr = 'A'|'B'|'C'
Now, I need a type SplitStr
that makes the SplitStr<StrOr>
of type 'A|B|C'
How do I do that?
I have a type that looks like this:
type StrOr = 'A'|'B'|'C'
Now, I need a type SplitStr
that makes the SplitStr<StrOr>
of type 'A|B|C'
How do I do that?