UNPKG

vim-webgl-component

Version:

A demonstration app built on top of the vim-webgl-viewer

12 lines (11 loc) 577 B
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<TArgs> extends HandlingBase<ISimpleEventHandler<TArgs>, SimpleEventDispatcher<TArgs>, SimpleEventList<TArgs>> implements ISimpleEventHandling<TArgs> { constructor(); }