Skip to main content
Deno 2 is finally here 🎉️
Learn more
Go to Latest
type alias FocusContextValue
import { type FocusContextValue } from "https://deno.land/x/netzo@0.3.66/deps/react-day-picker.ts";

Represents the value of the FocusContext.

definition: { focusedDay: Date | undefined; focusTarget: Date | undefined; focus: (day: Date) => void; blur: () => void; focusDayAfter: () => void; focusDayBefore: () => void; focusWeekBefore: () => void; focusWeekAfter: () => void; focusMonthBefore: () => void; focusMonthAfter: () => void; focusYearBefore: () => void; focusYearAfter: () => void; focusStartOfWeek: () => void; focusEndOfWeek: () => void; }