Closed kbuntrock closed 1 year ago
Unlike other "description" properties, parameter's ones are html escaped.
Example :
{ "name": "petId", "in": "path", "required": true, "description": "Pet's id to retrieve", "schema": { "type": "string" } }
will generate :
/** * Pet's id to retrieve */ petId: string;
It should be :
/** * Pet's id to retrieve */ petId: string;
Unlike other "description" properties, parameter's ones are html escaped.
Example :
will generate :
It should be :