Search Terms
constructor parameter property documentation
Problem
When using --excludeNotDocumented, a class that declares properties in the constructor the properties do not seem to be documented correctly even with @param.
class X {
/**
* Instantiates X.
* @param prop The property of X.
*/
constructor(readonly prop: number) {
}
}
Suggested Solution