Protectedhandlers: Record<string, unknown>Arrays of registered event handlers, grouped by the event name.
ProtectedGet all of the registered handlers for an event.
The name of the event.
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.
The
eventedmixin provides methods allowing an object to trigger events, running externally registered event handlers.