IEventEntry

[ Schnittstelle ]

export interface IEventEntry {
    id: number;
    name: string;
    callback: (e: EventProvider.Event, ...data: any[]) => void;
    options: any;
    destroy: DestroyFunction | null;
}

Eigenschaften

Name

Typ

Beschreibung

id

number

 

name

string

 

callback

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

 

options

any

 

destroy

DestroyFunction, null

 

IEventEntry 1:

Verfügbar ab Version 1.10