Files
emaui/node_modules/@mantine/dates/lib/components/Month/get-month-days/get-month-days.d.ts
2026-05-29 15:23:46 +03:00

9 lines
340 B
TypeScript

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 {};