Open
Description
When setting
useSingleRequestParameter: true
the documentation strings for the properties are missing, e.g.:
export interface SomeRequestParams {
id: number;
}
I would like to have the documentation strings in the generated interfaces, e.g.:
export interface SomeRequestParams {
/**
* The ID of the entity.
*/
id: number;
}