@hidden

Tag Kind
Modifier
TSDoc Reference
TypeDoc specific

Reflections marked with the @hidden tag will be removed from the documentation. It is equivalent to the @ignore JSDoc tag, which is also recognized by TypeDoc.

Example

export class Visibility {
/** @hidden */
newBehavior(): void;
}

See Also