UNPKG

react-trip-date

Version:

Accessible, fully customizable date and range picker for React applications.

10 lines 418 B
import { InitialComponents, InitialProps } from "../constant"; export type DatePickerOnChange = (days: string[]) => void; export type DatePickerComponents = InitialComponents; export interface DatePickerProps extends InitialProps { numberOfSelectableDays?: number; selectedDays?: string[]; components?: DatePickerComponents; onChange: DatePickerOnChange; } //# sourceMappingURL=datePicker.type.d.ts.map