@hideconstructor

Tag Kind
Modifier
TSDoc Reference
TypeDoc specific

This tag should only be used to work around TypeScript#58653. Prefer the @hidden or @ignore tags instead.

Classes marked with @hideconstructor will have their constructor hidden, it may also be placed on constructors to remove them from the documentation

Example

/** @hideconstructor */
export class Visibility {
/** Will not be present in the generated documentation */
constructor() {}
}

See Also