We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No description provided.
The text was updated successfully, but these errors were encountered:
I got confused when I didn't see my comment I did not immediately understand that the topic was concretized :)
I sat, thought and came up with a crutch solution 👍 👍 💯
@Enum("id") export class PeriodUnit extends EnumType<PeriodUnit>() { static readonly DAY = new PeriodUnit('d'); protected constructor(readonly id: string) { super() } }
@Schema() export class Period { @EnumProp(PeriodUnit,{ required: true }) unit: PeriodUnit }
abstract class JenumClass extends EnumType<JenumClass>() { private constructor( readonly id: string, ...args: any[] ) { super() } } export function EnumProp<T extends typeof JenumClass>( jenumCls: T, options?: PropOptions ) { return (target: {}, propertyKey: string) => { Prop({ ...(options as object), type: String, set: (v: JenumClass) => v.id, get: (v: string) => jenumCls.valueOf(v) })(target, propertyKey); } }
Sorry, something went wrong.
No branches or pull requests
No description provided.
The text was updated successfully, but these errors were encountered: