antd-mobile
Version:
基于 React 的移动设计规范实现
15 lines (14 loc) • 381 B
TypeScript
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;
}