UNPKG

@mantine/dates

Version:

Calendars, date and time pickers based on Mantine components

9 lines (8 loc) 340 B
import { DateStringValue, DayOfWeek } from '../../../types'; interface GetMonthDaysInput { month: DateStringValue; firstDayOfWeek: DayOfWeek | undefined; consistentWeeks: boolean | undefined; } export declare function getMonthDays({ month, firstDayOfWeek, consistentWeeks, }: GetMonthDaysInput): DateStringValue[][]; export {};