UNPKG

zent

Version:

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

15 lines (14 loc) 584 B
/// <reference types="react" /> import { IGenerateDateConfig, IShowTime, IShowTimeRange, IDisabledTime, IRangePropsWithDefault, ISingleProps } from '../types'; interface IRangePickerProps extends IRangePropsWithDefault { generateDate: IGenerateDateConfig; PickerComponent: React.ComponentType<ISingleProps & { showTime?: IShowTime<string>; disabledTime?: IDisabledTime; }>; showTime?: IShowTimeRange<string>; seperator: string; disabledTime?: IDisabledTime; } declare const RangePicker: React.FC<IRangePickerProps>; export default RangePicker;