UNPKG

434 BTypeScriptView Raw
1import { EventHandlerRegistration } from "../registration/EventHandlerRegistration";
2/**
3 * Manage event registrations.
4 */
5export interface EventRegistrationManager {
6 /**
7 * Add an event to this machine.
8 * @param {EventHandlerRegistration<TYPE>} event
9 * @returns {this}
10 */
11 addEvent<TYPE, PARAMS>(event: EventHandlerRegistration<TYPE, PARAMS>): this;
12}
13//# sourceMappingURL=EventRegistrationManager.d.ts.map
\No newline at end of file