IEventEntry
[ Interface ]
export interface IEventEntry {
id: number;
name: string;
callback: (e: EventProvider.Event, ...data: any[]) => void;
options: any;
destroy: DestroyFunction | null;
}
Properties
Name | Type | Description |
---|---|---|
id |
| |
name |
| |
callback | (e: EventProvider.Event, ...data: any[]) => void; |
|
options |
| |
destroy |
|
Available from version 1.10 |