ste-promise-events
Version:
Add the power of Events to your projects. They are styled after .Net using a sender and arguments. Handlers can be promises.
17 lines (16 loc) • 831 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 { PromiseEventDispatcher } from "./PromiseEventDispatcher";
import { PromiseEventHandlingBase } from "./PromiseEventHandlingBase";
import { PromiseEventList } from "./PromiseEventList";
import { IPromiseEvent } from "./IPromiseEvent";
import { IPromiseEventHandler } from "./IPromiseEventHandler";
import { IPromiseEventHandling } from "./IPromiseEventHandling";
import { NonUniformPromiseEventList } from "./NonUniformPromiseEventList";
export { IPromiseEventHandler, IPromiseEventHandling, IPromiseEvent, PromiseEventDispatcher, PromiseEventHandlingBase, PromiseEventList, NonUniformPromiseEventList, };