I have the following situation:
enum T {
A = "a"
};
enum U {
[T.A] = "u"
}
I getting this error:
Computed property names are not allowed in enums.
Is there a way to workaround it? Or maybe using a similar resource that would allow me to have similar behavior?