Change from this: ```javascript export const enum HeroClass { MAGE = "Mage", WARRIOR = "Warrior", HUNTER = "Hunter", THIEF = "Thief" } ``` to this: ```javascript export type HeroClass = "Mage" | "Warrior" | "Hunter" | "Thief" | ```
Change from this:
to this: