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) 233 B
import { IBaseEventHandling } from "ste-core"; import { ISignalHandler } from "."; /** * Indicates the object is capable of handling named signals. */ export interface ISignalHandling extends IBaseEventHandling<ISignalHandler> { }