UNPKG

326 BTypeScriptView Raw
1import { CalendarDay } from "./CalendarDay.js";
2/** Represent a week in a calendar month. */
3export declare class CalendarWeek {
4 constructor(weekNumber: number, days: CalendarDay[]);
5 /** The number of the week within the year. */
6 weekNumber: number;
7 /** The days within the week. */
8 days: CalendarDay[];
9}