TypeDoc

    @hideconstructor

    Tag Kind: Modifier

    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

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