mirror of
https://github.com/Tria-plc/emaui.git
synced 2026-08-27 15:30:57 +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 {};
|