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