import { IEvent } from './i-event'; export interface IEventHandler { (event: T): void; once?: boolean; }