/*! * Strongly Typed Events for TypeScript - Core * https://github.com/KeesCBakker/StronlyTypedEvents/ * http://keestalkstech.com * * Copyright Kees C. Bakker / KeesTalksTech * Released under the MIT license */ import { EventDispatcher } from "./EventDispatcher"; import { EventHandlingBase } from "./EventHandlingBase"; import { EventList } from "./EventList"; import { IEvent } from "./IEvent"; import { IEventHandler } from "./IEventHandler"; import { IEventHandling } from "./IEventHandling"; import { NonUniformEventList } from "./NonUniformEventList"; export { IEventHandler, IEventHandling, IEvent, EventDispatcher, EventHandlingBase, EventList, NonUniformEventList, };