interface alert { /** * 显示类型 */ type: 'success' | 'warning' | 'info' | 'error' /** * 标题 */ title: string /** * 描述 */ description: string /** * 显示图标 */ showIcon: boolean /** * 是否居中 */ center: boolean /** * 关闭文本 */ closeText: string /** * 允许关闭 */ closable: boolean /** * 隐藏 */ hidden: boolean }