| 15 | |
| 16 | /** 模态框控制器接口 */ |
| 17 | export interface ModalController { |
| 18 | /** 显示模态框 */ |
| 19 | show: (fileName: string) => void; |
| 20 | /** 隐藏模态框 */ |
| 21 | hide: () => void; |
| 22 | /** 注册确认后的回调函数 */ |
| 23 | onConfirm: (callback: ConfirmCallback) => void; |
| 24 | } |
| 25 | |
| 26 | // ==================== 工厂函数 ==================== |
| 27 |
nothing calls this directly
no outgoing calls
no test coverage detected