You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
513 B

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;
}