Description
The enum generated uses single-quotes as the string delimiter, but doesn't escape any single quotes inside the value of the case. This might be the case with native TS enums as well, but I do not use native enums in my TS code.
Desired functionality
export type properEnumUnion = 'Bachelor\'s degree' | 'Associate\'s degree';
Current functionality
export type brokenEnumUnion = 'Bachelor's degree' | 'Associate's degree';