import { EVENT_TYPES } from "./event.types"; import { AnyFunc } from "./func.types"; export interface EventHandler { type: EVENT_TYPES; func: AnyFunc; } export type Handlers = { [key in EVENT_TYPES]?: AnyFunc[]; }; export declare function findHandlerIndex(handler: EventHandler, handlers: Handlers): number; //# sourceMappingURL=event-handler.d.ts.map