标签: typescript
我想将字符串并集转换为字符串枚举, 但我不知道如何
type strUnion = 'a' | 'b' | 'c' | 'd';
转换为
enum str { a = 'a', b = 'b', c = 'c', d = 'd' }
你知道吗?