import { MonthIndex } from '../enums/month-index.enum';
export interface CalendarDay {
    year: number;
    month: MonthIndex;
    day: number;
}
