馃敄 Enhancement description
Is there a way to, instead of generating enums, generate types and constants, e.g.
馃帳 Pitch
From:
export enum ItemsRunItemOrigin {
TEMPLATE = 'template',
CARRYOVER = 'carryover',
ADHOC = 'adhoc',
}
to
export const ItemsRunItemOrigin = {
TEMPLATE = 'template',
CARRYOVER = 'carryover',
ADHOC = 'adhoc',
} as const;
export type ItemsRunItemOrigin = typeof ItemsRunItemOrigin[keyof typeof ItemsRunItemOrigin];
Thank you very much in advance
馃憖 Have you spent some time to check if this issue has been raised before?
馃彚 Have you read the Code of Conduct?
馃敄 Enhancement description
Is there a way to, instead of generating enums, generate types and constants, e.g.
馃帳 Pitch
From:
to
Thank you very much in advance
馃憖 Have you spent some time to check if this issue has been raised before?
馃彚 Have you read the Code of Conduct?