EventData.ts 388 Bytes
/*
* name;
*/
class EventData {
    constructor(target, type, listener, caller, args?) {
        this.target = target;
        this.type = type;
        this.listener = listener;
        this.caller = caller;
        this.args = args;
    }

    public target: Laya.EventDispatcher;
    public type: string;
    public listener: Function;
    public caller: any;
    public args: any[];
}