UNPKG

ste-signals

Version:

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

8 lines (7 loc) 167 B
import { IEventManagement } from "ste-core"; /** * Event handler function without arguments */ export interface ISignalHandler { (ev: IEventManagement): void; }