@rehookify/datepicker
Version:
The ultimate tool to create a date, range and time picker in your React applications.
13 lines • 339 B
TypeScript
import { DPDayInteger } from './day';
export type DPDatePart = 'year' | 'month' | 'date';
export interface DPDateParts {
D: number;
M: number;
Y: number;
}
export type DPDatesMode = 'single' | 'multiple' | 'range';
export type DPDateExclude = {
day?: DPDayInteger[];
date?: Date[];
};
//# sourceMappingURL=date.d.ts.map