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