import { EventArg } from './EventArg';
/**
 * 事件对象
 */
export type EventObject = {
    /**
     * 唯一编号
     */
    id: string;
    /**
     * 回调函数
     */
    callback: (ev: EventArg) => void;
    /**
     * 是否只触发一次
     */
    once: boolean;
    /**
     * 自定义数据
     */
    data: any;
    /**
     * 是否已暂停
     */
    paused: boolean;
};
