@protected
- Tag Kind
- Modifier
- TSDoc Reference
- TypeDoc specific
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.
Example
export class Visibility {
/** @protected */
member = 123;
}
// Will be documented as:
export class Visibility {
protected member = 123;
}
See Also
- The
@public
tag - The
@private
tag - The
@internal
tag - The
--excludeProtected
option