zent
Version:
一套前端设计语言和基于React的实现
11 lines (10 loc) • 403 B
TypeScript
import { FC } from 'react';
import { ISingleDateBodyProps, IShowTime, IShowTimeOptionWithDefault } from '../../types';
interface IDatePickerBodyProps extends ISingleDateBodyProps {
popText?: string;
disableRangeOverView?: boolean;
showTime?: IShowTime;
showTimeOption?: IShowTimeOptionWithDefault;
}
declare const DatePickerBody: FC<IDatePickerBodyProps>;
export default DatePickerBody;