UNPKG

377 BPlain TextView Raw
1import { CalendarWeek } from "./CalendarWeek.js";
2
3/** Represent a month in a calendar year. Contains the weeks within the month. */
4export class CalendarMonth {
5 constructor(month: Date, weeks: CalendarWeek[]) {
6 this.date = month;
7 this.weeks = weeks;
8 }
9
10 /** The date of the month. */
11 date: Date;
12
13 /** The weeks within the month. */
14 weeks: CalendarWeek[];
15}