vim-webgl-component
Version:
A demonstration app built on top of the vim-webgl-viewer
16 lines (15 loc) • 631 B
TypeScript
/*!
* Strongly Typed Events for TypeScript - Promise Signals
* https://github.com/KeesCBakker/StronlyTypedEvents/
* http://keestalkstech.com
*
* Copyright Kees C. Bakker / KeesTalksTech
* Released under the MIT license
*/
import { ISignal } from "./ISignal";
import { ISignalHandler } from "./ISignalHandler";
import { ISignalHandling } from "./ISignalHandling";
import { SignalDispatcher } from "./SignalDispatcher";
import { SignalHandlingBase } from "./SignalHandlingBase";
import { SignalList } from "./SignalList";
export { ISignalHandling, ISignal, ISignalHandler, SignalDispatcher, SignalHandlingBase, SignalList, };