UNPKG

370 BPlain TextView Raw
1import { CalendarDay } from "./CalendarDay.js";
2
3/** Represent a week in a calendar month. */
4export class CalendarWeek {
5 constructor(weekNumber: number, days: CalendarDay[]) {
6 this.days = days;
7 this.weekNumber = weekNumber;
8 }
9 /** The number of the week within the year. */
10 weekNumber: number;
11 /** The days within the week. */
12 days: CalendarDay[];
13}