laravel-typegen
laravel-typegen copied to clipboard
Option to use objects instead of enums
use
export const GenderType = {
Male: "Male",
Female: "Female",
Other: "Other"
} as const
instead of
export enum GenderType {
Male = "Male",
Female = "Female",
Other = "Other"
}