/*! * 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, };