Action.ts 207 Bytes
import { Params } from './Params';

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