UNPKG

zent

Version:

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

8 lines (7 loc) 498 B
/// <reference types="react" /> import { ICombinedProps, IShowTimeRange, IValueType, IRangeRelatedType } from './types'; export interface ICombinedDateRangePickerProps<T extends IValueType = 'string'> extends Omit<ICombinedProps, 'valueType' | 'onChange'>, IRangeRelatedType<T> { showTime?: IShowTimeRange<string>; } export declare const CombinedDateRangePicker: <T extends IValueType = "string">(props: ICombinedDateRangePickerProps<T>) => JSX.Element; export default CombinedDateRangePicker;