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