Protected
handlers: Record<string, unknown>Arrays of registered event handlers, grouped by the event name.
Unregister an event handler.
The name of the event.
The function that handles the event.
Register an event handler.
The name of the event.
The function to handle the event.
Register an event handler so that it will run only once, and then unregister itself.
The name of the event.
The function to handle the event.
v1.2, to be removed in v2.0
Generated using TypeDoc v0.24.8
The
evented
mixin provides methods allowing an object to trigger events, running externally registered event handlers.