vim-webgl-component
Version:
A demonstration app built on top of the vim-webgl-viewer
17 lines (16 loc) • 541 B
TypeScript
import { EventListBase } from "ste-core";
import { SimpleEventDispatcher } from "./SimpleEventDispatcher";
/**
* Storage class for multiple simple events that are accessible by name.
* Events dispatchers are automatically created.
*/
export declare class SimpleEventList<TArgs> extends EventListBase<SimpleEventDispatcher<TArgs>> {
/**
* Creates a new SimpleEventList instance.
*/
constructor();
/**
* Creates a new dispatcher instance.
*/
protected createDispatcher(): SimpleEventDispatcher<TArgs>;
}