@vurilo/nepali-date-picker
Version:
Nepali Calendars, date and time pickers based on Mantine components
5 lines (4 loc) • 312 B
TypeScript
export type DateValue = Date | null;
export type DatesRangeValue = [DateValue, DateValue];
export type DatePickerType = 'default' | 'multiple' | 'range';
export type DatePickerValue<Type extends DatePickerType = 'default'> = Type extends 'range' ? DatesRangeValue : Type extends 'multiple' ? Date[] : DateValue;