/** * 事件监听的优先级。越高的优先级对事件的影响越有效,除了{@link EventPriority.MONITOR} */ export declare enum EventPriority { LOWEST = 0, LOW = 1, NORMAL = 2, HIGH = 3, HIGHEST = 4, MONITOR = 5 } export declare const EventPriorityIds: EventPriority[];