UNPKG

ste-promise-signals

Version:

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

8 lines (7 loc) 276 B
import { IBaseEventHandling } from 'ste-core'; import { IPromiseSignalHandler } from './IPromiseSignalHandler'; /** * Indicates the object is capable of handling named signals. */ export interface IPromiseSignalHandling extends IBaseEventHandling<IPromiseSignalHandler> { }