UNPKG

mantine-datepicker-jalali

Version:
5 lines 389 B
export declare type DateValue = Date | null; export declare type DatesRangeValue = [DateValue, DateValue]; export declare type DatePickerType = 'default' | 'multiple' | 'range'; export declare type DatePickerValue<Type extends DatePickerType = 'default'> = Type extends 'range' ? DatesRangeValue : Type extends 'multiple' ? Date[] : DateValue; //# sourceMappingURL=DatePickerValue.d.ts.map