UNPKG

react-day-picker

Version:

Customizable Date Picker for React

5 lines (4 loc) 431 B
import type { DateLib } from "../classes/DateLib.js"; import type { DayPickerProps, MoveFocusBy, MoveFocusDir } from "../types/index.js"; /** Return the next date that should be focused. */ export declare function getFocusableDate(moveBy: MoveFocusBy, moveDir: MoveFocusDir, refDate: Date, navStart: Date | undefined, navEnd: Date | undefined, props: Pick<DayPickerProps, "ISOWeek" | "broadcastCalendar">, dateLib: DateLib): Date;