UNPKG

@mantine/dates

Version:

Calendars, date and time pickers based on Mantine components

9 lines (8 loc) 325 B
import type { DateLabelFormat, DayOfWeek } from '../../../types'; interface GetWeekdaysNamesInput { locale: string; format?: DateLabelFormat; firstDayOfWeek?: DayOfWeek; } export declare function getWeekdayNames({ locale, format, firstDayOfWeek, }: GetWeekdaysNamesInput): import("react").ReactNode[]; export {};