Action.ts 131 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 import { Params } from './Params'; // 事件对象 export interface Action { type: string; params?: Params; // 参数集合 }