You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The jsdoc comments for operations is generated above the first child of the operation in document order. This means the comment intended for the operation may end up parameters/responses/etc depending on which child is defined first.
All parameter descriptions are mashed together as @description tags above "path" instead of being rendered above the corresponding parameter
Example:
exportinterfaceoperations{getVisits: {/** swagger description value from getVisits INCORRECTLY renders here */parameters: {/** @description The numeric store Id (this should be above storeId)@description The store name (this should be above storeName) */path: {storeId: number;storeName: number;};};responses: {/** @description Success */200: {content: {"application/json": (components["schemas"]["SchedulerVisitReadModel"])[];};};};};
The text was updated successfully, but these errors were encountered:
mitchell-merry
pushed a commit
to mitchell-merry/openapi-typescript
that referenced
this issue
Jan 26, 2023
Using version 6.1.0
Example:
The text was updated successfully, but these errors were encountered: