Hello,
Is it possible to generate typescript enums when using the json schema property "enum" ?
For example with this in my schema :
"gender": {
"title": "Gender",
"enum": ["male", "female"]
},
I would have the resulting enum:
export enum Gender {
male = 'male',
female = 'female',
}
Hello,
Is it possible to generate typescript enums when using the json schema property "enum" ?
For example with this in my schema :
I would have the resulting enum: