laravel-typegen icon indicating copy to clipboard operation
laravel-typegen copied to clipboard

Option to use objects instead of enums

Open 7nohe opened this issue 1 year ago • 0 comments

use

export const GenderType = {
    Male: "Male",
    Female: "Female",
    Other: "Other"
} as const

instead of

export enum GenderType {
    Male = "Male",
    Female = "Female",
    Other = "Other"
}

7nohe avatar Apr 23 '23 07:04 7nohe