UNPKG

react-day-picker

Version:

Customizable Date Picker for React

4 lines (3 loc) 392 B
import type { DateLib, 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, "locale" | "ISOWeek" | "weekStartsOn">, dateLib: DateLib): Date;