UNPKG

zent

Version:

一套前端设计语言和基于React的实现

16 lines (15 loc) 543 B
/// <reference types="react" /> import { ISinglePanelProps, IDisabledTime, IShowTime } from '../../types'; export interface IDatePickerPanelProps extends ISinglePanelProps { disableRangeOverView?: boolean; popText?: string; hideFooter?: boolean; showTime?: IShowTime; disabledTime?: IDisabledTime; footerText?: string; combinedLeft?: boolean; combinedRight?: boolean; onPanelDateChange?: (val: Date) => void; } declare const DatePickerPanel: React.FC<IDatePickerPanelProps>; export default DatePickerPanel;