Cooking with TypeScript enums

Periodically I hear that something wrong with TypeScript enums. But if you understand how it works - it's not an issue for you.The usage is very simple:
βΆenum Role {
None = 0,
Moderator = 1,
A...