cyclosproject / ng-openapi-gen

An OpenAPI 3.0 codegen for Angular
MIT License
397 stars 132 forks source link

@deprecated in comments not generated for inline objects #188

Closed luisfpg closed 2 years ago

luisfpg commented 2 years ago

For example, it generates

export type Model = Super & {

/**
 * Deprecated property, but without the annotation
 */
'property'?: boolean;

};