UNPKG

@mantine/dates

Version:

Calendars, date and time pickers based on Mantine components

13 lines (12 loc) 437 B
import { DayOfWeek } from '../../types'; export declare function useDatesContext(): { getLocale: (input?: string) => string; getFirstDayOfWeek: (input?: DayOfWeek) => DayOfWeek; getWeekendDays: (input?: DayOfWeek[]) => DayOfWeek[]; getLabelSeparator: (input?: string) => string; locale: string; firstDayOfWeek: DayOfWeek; weekendDays: DayOfWeek[]; labelSeparator: string; consistentWeeks: boolean; };