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) 183 B
import { IEventManagement } from 'ste-core'; /** * Event handler function without arguments */ export interface IPromiseSignalHandler { (ev: IEventManagement): Promise<void>; }