UNPKG

antd-mobile

Version:

基于 React 的移动设计规范实现

29 lines (28 loc) 689 B
interface ModalProps { title?: string; visible: boolean; maskClosable?: boolean; closable?: boolean; footer?: Array<{}>; onClose?: () => void; /** react native only **/ transparent?: boolean; style?: {}; animated?: boolean; bodyStyle?: {}; animationType?: any; onAnimationEnd?: (visible: boolean) => void; animateAppear?: boolean; styles?: any; /** web only */ prefixCls?: string; transitionName?: string; maskTransitionName?: string; className?: string; wrapClassName?: string; touchFeedback?: boolean; wrapProps?: {}; operation?: boolean; platform?: string; } export default ModalProps;