export interface Tool { /** * 工具名称 */ name: string; /** * font awesome 图标 */ icon?: string; /** * 点击事件 */ action?: any; }