antd-mobile
Version:
基于 React 的移动设计规范实现
22 lines (21 loc) • 514 B
TypeScript
interface DatePickerProps {
defaultDate: any;
value?: any;
format?: (x: any) => void;
cols?: number;
mode?: string;
extra?: string;
children?: any;
minDate?: any;
maxDate?: any;
locale?: any;
/** rn only */
triggerTypes?: string;
/** web only */
prefixCls?: string;
pickerPrefixCls?: string;
popupPrefixCls?: string;
dismissText?: string | React.ReactElement<any>;
okText?: string | React.ReactElement<any>;
}
export default DatePickerProps;