UNPKG

@cainiaofe/cn-ui-m

Version:
17 lines (16 loc) 517 B
import { CnTimePickerProps } from './cn-time-picker-props'; import { IAvailableDate } from './i-available-date'; export interface CnRangeTimePickerProps extends Omit<CnTimePickerProps, 'value' | 'defaultValue' | 'onChange'> { /** * 受控值 */ value?: IAvailableDate[] | null; /** * 默认值 */ defaultValue?: IAvailableDate[] | null; /** * 值改变时触发的回调函数 */ onChange?: (value: number[] | undefined, dateStr: string[] | undefined) => void; }