@event

Tag Kind: Modifier

The @event tag is used to mark a reflection as belonging in the "Events" group. It is equivalent to specifying @group Events in the comment.

export class App extends EventEmitter {
/**
* @event
*/
static ON_REQUEST = "request";
}