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

number

 

name

string

 

callback

(e: EventProvider.Event, ...data: any[]) => void;

 

options

any

 

destroy

DestroyFunction, null

 

IEventEntry 1:

Available from version 1.10