MCPcopy
hub / github.com/ys1231/MoveCertificate / ModalController

Interface ModalController

webdev/src/modal.ts:17–24  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected