compodoc
compodoc copied to clipboard
[FEATURE] Support of type params
Overview of the feature
In our project, generic classes occur very frequently. Therefore it would be important that there is a way to label the type parameters, e.g. with @typeparam.
Motivation for or Use Case
This is an example how it could be solved:
/**
* Any method for test purposes
* @param id Any ID
* @typeparam T This type I want to descripe
* @typeparam U This type I also want to descripe
*/
setSomething<T, U>(id: string): void {
// do it
}
Related issues
A similar issue but closed is this: https://github.com/compodoc/compodoc/issues/692
or is there any way how I can solve it by myself?
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
written something so that it is not closed automatically.
This issue has been automatically closed because it has not had recent activity. Please file a new issue if you are encountering a similar or related problem. Thank you for your contributions.
is there a chance to get this in a future release?