vim-webgl-component
Version:
A demonstration app built on top of the vim-webgl-viewer
17 lines (16 loc) • 684 B
TypeScript
/*!
* 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, };