TypeDoc

    @private

    Tag Kind: Modifier

    This tag should generally not be used and may be removed in a future release. The @private tag overrides the visibility of a reflection to be private.

    export class Visibility {
    /** @private */
    member = 123;
    }

    // Will be documented as:
    export class Visibility {
    private member = 123;
    }
    MMNEPVFCICPMFPCPTTAAATR