UNPKG

262 BTypeScriptView Raw
1import type { CalendarDay, CalendarMonth } from "../classes/index.js";
2/**
3 * Returns all the days belonging to the calendar by merging the days in the
4 * weeks for each month.
5 */
6export declare function getDays(calendarMonths: CalendarMonth[]): CalendarDay[];