!! Breaking Change !!
Enum output changed from:
export type EnumString = "bar" | "baz" | "foo" | "qux";
to
export enum EnumString {
EnumBar = "bar",
EnumBaz = "baz",
EnumFoo = "foo",
EnumQux = "qux"
}
To get the previous behavior use the mutation config.EnumAsTypes
.
// use alias types for enums
ts.ApplyMutations(
config.EnumAsTypes,
)
Full Changelog: v1.2.0...v1.3.0