I\'m trying to use export and import but it not working I get an error
Here is my code HTML :
<
This worked for me:
my-enum.ts
const MyEnum = { 'test': 456, 'Default': 123 }
Component.ts
import * as MyEnum from 'my-enum';