UNPKG

react-day-picker

Version:

Customizable Date Picker for React

21 lines (17 loc) 471 B
import { CalendarWeek } from "./CalendarWeek.js"; /** * Represents a month in a calendar year. * * A `CalendarMonth` contains the weeks within the month and the date of the * month. */ export class CalendarMonth { constructor(month: Date, weeks: CalendarWeek[]) { this.date = month; this.weeks = weeks; } /** The date representing the first day of the month. */ date: Date; /** The weeks that belong to this month. */ weeks: CalendarWeek[]; }