Passing the t on the enum value is not working it givings an error.
enum catSize { SMALL = 'Small', //works MEDIUM = 'Medium', //works LARGE = 'Large', //works}enum catSize { SMALL = t('sizes.small'), //error MEDIUM = t('sizes.medium'), //error LARGE = t('sizes.large'),}
Gives the following error:Computed values are not permitted in an enum with string valued members.ts(2553)