mirror of
https://github.com/Tria-plc/emaui.git
synced 2026-08-28 10:10:59 +00:00
9 lines
340 B
TypeScript
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 {};
|