UNPKG

mobile-more

Version:

基于 antd-mobile v5 扩展移动端 UI 组件

21 lines (20 loc) 678 B
import { DatePickerProps } from 'antd-mobile'; import React from 'react'; export type { DatePickerProps }; export interface SuperDatePickerProps extends Omit<DatePickerProps, 'value'> { /** * @description 当前值。 */ value?: DatePickerProps['value'] | string; /** * @description 日期格式,默认根据不同 `precision` 设置。 */ format?: string | ((date: Date, precision: DatePickerProps['precision']) => string); /** * @description 占位符,提示文本。 * @default '请选择' */ placeholder?: string; } declare const SuperDatePicker: React.FC<SuperDatePickerProps>; export default SuperDatePicker;