antd-mobile-alita
Version:
基于 React 的移动设计规范实现
18 lines (17 loc) • 513 B
TypeScript
import * as PropTypes from 'prop-types';
import * as React from 'react';
import { DatePickerProps } from './PropsType';
export default class DatePickerView extends React.Component<DatePickerProps, any> {
static defaultProps: {
mode: string;
extra: string;
prefixCls: string;
pickerPrefixCls: string;
minuteStep: number;
use12Hours: boolean;
};
static contextTypes: {
antLocale: PropTypes.Requireable<object>;
};
render(): JSX.Element;
}