ste-signals
Version:
Add the power of Signals to your projects. They are the most bare bones implementation of an event.
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, };