1 | ;
|
2 | Object.defineProperty(exports, "__esModule", { value: true });
|
3 | exports.CalendarMonth = void 0;
|
4 | /** Represent a month in a calendar year. Contains the weeks within the month. */
|
5 | class CalendarMonth {
|
6 | constructor(month, weeks) {
|
7 | this.date = month;
|
8 | this.weeks = weeks;
|
9 | }
|
10 | }
|
11 | exports.CalendarMonth = CalendarMonth;
|
12 | //# sourceMappingURL=CalendarMonth.js.map |
\ | No newline at end of file |