UNPKG

340 BTypeScriptView Raw
1import { CalendarWeek } from "./CalendarWeek.js";
2/** Represent a month in a calendar year. Contains the weeks within the month. */
3export declare class CalendarMonth {
4 constructor(month: Date, weeks: CalendarWeek[]);
5 /** The date of the month. */
6 date: Date;
7 /** The weeks within the month. */
8 weeks: CalendarWeek[];
9}