import { HandlingBase } from "ste-core"; import { ISimpleEventHandling } from "./ISimpleEventHandling"; import { ISimpleEventHandler } from "./ISimpleEventHandler"; import { SimpleEventList } from "./SimpleEventList"; import { SimpleEventDispatcher } from "./SimpleEventDispatcher"; /** * Extends objects with signal event handling capabilities. */ export declare abstract class SimpleEventHandlingBase extends HandlingBase, SimpleEventDispatcher, SimpleEventList> implements ISimpleEventHandling { constructor(); }