Currently enums are generate as
enum MyEnum {
One = "One",
Two = "Two"
}
Which means I can't reference the types in my code - they're not exported.
I hacked a quick .Replace("enum ", "export enum ") for my purpose, but should be slapped into the library when possible.