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