Readonlykeyconfig key
Readonlyoptionsconfig options
ReadonlytTranslation functions.
Readonlytypeconfig type-name
Emit an event, invoking all handlers registered for it.
The name of the event to emit.
Arguments to pass to the event handlers.
The Emitter instance for method chaining.
Check if there are any handlers registered for a specific event.
The name of the event.
true if there are one or more handlers, false otherwise.
Check if there are any handlers registered for any event.
true if there are one or more handlers for any event, false otherwise.
Get the count of listeners for a specific event.
The name of the event.
The number of listeners for the event.
Get the count of all event handlers in total.
The total number of event handlers.
Retrieve the event handlers registered for a specific event.
The name of the event.
An array of functions registered as handlers for the event.
Remove a specific event handler for a specified event.
The name of the event.
The specific handler function to remove.
The Emitter instance for method chaining.
Remove all event handlers for a specified event.
The name of the event for which to remove all handlers.
The Emitter instance for method chaining.
Remove all event handlers for all events.
The Emitter instance for method chaining.
Register an event handler that listens to a specified event.
The name of the event to listen to.
The function to execute when the event is emitted.
The Emitter instance for method chaining.
Register a one-time event handler for a specified event.
The name of the event to listen to.
The function to execute once when the event is emitted.
The Emitter instance for method chaining.
plugin configuration binding