Action.ts 174 Bytes Raw Blame History Permalink 1 2 3 4 5 6 // 事件对象 export interface Action { type: string; name?: string; // 行为的名称,目前值与type相同,暂不启用 // params?: Params; // 参数集合 }