UNPKG

antd-mobile

Version:

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

15 lines (14 loc) 381 B
import * as React from 'react'; import ModalProps from './ModalPropsType'; export default class Modal extends React.Component<ModalProps, any> { static defaultProps: { prefixCls: string; transparent: boolean; animated: boolean; style: {}; bodyStyle: {}; onShow(): void; footer: any[]; }; render(): JSX.Element; }