UNPKG

vim-webgl-component

Version:

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

12 lines (11 loc) 291 B
import { ISubscribable } from "ste-core"; import { ISignalHandler } from "."; /** * Models a signal. This type of events has no arguments. * * @export * @interface ISignal * @extends {ISubscribable<ISignalHandler>} */ export interface ISignal extends ISubscribable<ISignalHandler> { }