UNPKG

fastlion-amis

Version:

一种MIS页面生成工具

18 lines (17 loc) 494 B
/** * @file ModalManager * @description * @author fex */ /// <reference types="react" /> interface ModalComponent extends React.Component<{ 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; export {};