/** * 命令运行的优先级。 * * Indicates the execution priority of this command */ export enum CommandPriority { highest = 5, high = 4, medium = 3, low = 2, lowest = 1 }