antd-mobile-rn
Version:
基于蚂蚁金服移动设计规范的 React Native 组件库
18 lines (17 loc) • 503 B
TypeScript
import PropTypes from 'prop-types';
import 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;
}