UNPKG

247 BJavaScriptView Raw
1/** Represent a month in a calendar year. Contains the weeks within the month. */
2export class CalendarMonth {
3 constructor(month, weeks) {
4 this.date = month;
5 this.weeks = weeks;
6 }
7}
8//# sourceMappingURL=CalendarMonth.js.map
\No newline at end of file