UNPKG

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