UNPKG

ste-signals

Version:

Add the power of Signals to your projects. They are the most bare bones implementation of an event.

12 lines (11 loc) 291 B
import { ISubscribable } from "ste-core"; import { ISignalHandler } from "."; /** * Models a signal. This type of events has no arguments. * * @export * @interface ISignal * @extends {ISubscribable<ISignalHandler>} */ export interface ISignal extends ISubscribable<ISignalHandler> { }