UNPKG

windly

Version:

17 lines (16 loc) 442 B
import { ModalProps } from 'antd'; import { ReactNode } from 'react'; interface ReusableModalProps extends Partial<ModalProps> { isVisible: boolean; onOk?: () => void; closePanle?: () => void; title?: string; size?: number; loading?: boolean; children?: ReactNode; footer?: ReactNode; closable?: boolean; maskClosable?: boolean; } declare const RModal: React.FC<ReusableModalProps>; export { RModal };