@category

Tag Kind
Block
TSDoc Reference
TypeDoc specific

The @group tag can be used to place several related API items under a common header when listed in a page's index. It may be specified multiple times to list a reflection under several headings.

Unlike the @category tag, reflections will be automatically placed under a header according to their kind if the @group tag is not specified. This tag can be used to simulate custom member types.

Example

export class App extends EventEmitter {
/**
* @group Events
*/

static readonly BEGIN = "begin";

/**
* The `@event` tag is equivalent to `@group Events`
* @event
*/

static readonly PARSE_OPTIONS = "parseOptions";

/**
* The `@eventProperty` tag is equivalent to `@group Events`
* @eventProperty
*/

static readonly END = "end";
}

See Also