/**
* Represents a month in a calendar year.
*
* A `CalendarMonth` contains the weeks within the month and the date of the
* month.
*/
export classCalendarMonth {
constructor(month, weeks) {
this.date = month;
this.weeks = weeks;
}
}
//# sourceMappingURL=CalendarMonth.js.map