TypeDoc

    @protected

    Tag Kind: Modifier

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

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

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