UNPKG

starchild-widget

Version:

Starchild Widget

13 lines 349 B
import { default as React } from 'react'; interface ModalProps { visible: boolean; onClose: () => void; children: React.ReactNode; showMask?: boolean; maskClosable?: boolean; zIndex?: number; showCloseButton?: boolean; } declare const Modal: React.FC<ModalProps>; export default Modal; //# sourceMappingURL=index.d.ts.map