UNPKG

vim-webgl-component

Version:

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

8 lines (7 loc) 252 B
import { ISubscribable } from "ste-core"; import { ISimpleEventHandler } from "./ISimpleEventHandler"; /** * Models a simple event with a generic argument. */ export interface ISimpleEvent<TArgs> extends ISubscribable<ISimpleEventHandler<TArgs>> { }