antd-mobile
Version:
基于 React 的移动设计规范实现
20 lines (19 loc) • 509 B
TypeScript
/// <reference types="react" />
import React from 'react';
import tsPropsType from './PropsType';
export default class DatePicker extends React.Component<tsPropsType, any> {
static defaultProps: {
mode: string;
extra: string;
onChange(): void;
title: string;
prefixCls: string;
pickerPrefixCls: string;
popupPrefixCls: string;
minuteStep: number;
};
static contextTypes: {
antLocale: any;
};
render(): JSX.Element;
}