UNPKG

vim-webgl-component

Version:

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

22 lines (21 loc) 413 B
/** * Manages the event. * * @export * @interface IEventManagement */ export interface IEventManagement { /** * Unsubscribe the current handler. * * @memberOf IEventManagement */ unsub(): void; /** * Stops the propagation of the event. * Cannot be used when async dispatch is done. * * @memberof IEventManagement */ stopPropagation(): void; }