UNPKG

jamis

Version:

一种支持通过JSON配置方式生成页面的组件库

17 lines (16 loc) 445 B
/** * @file ModalManager * @description * @author fex */ export interface ModalComponent { props: { onHide?: (e: any) => void; disabled?: boolean; closeOnEsc?: boolean; }; } export declare function current(): number; export declare function currentModal(): ModalComponent | void; export declare function addModal(modal: ModalComponent): void; export declare function removeModal(modal: ModalComponent): void;