UNPKG

antd-mobile

Version:

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

14 lines (13 loc) 389 B
import * as React from 'react'; import TagProps from './TagPropsType'; export default class Modal extends React.Component<TagProps, any> { static defaultProps: { disabled: boolean; selected: boolean; onChange(): void; }; constructor(props: any); componentWillReceiveProps(nextProps: any): void; onClick: () => void; render(): JSX.Element; }