UNPKG

react-day-picker

Version:

Customizable Date Picker for React

14 lines (12 loc) 370 B
import { CalendarDay } from "./CalendarDay.js"; /** Represent a week in a calendar month. */ export class CalendarWeek { constructor(weekNumber: number, days: CalendarDay[]) { this.days = days; this.weekNumber = weekNumber; } /** The number of the week within the year. */ weekNumber: number; /** The days within the week. */ days: CalendarDay[]; }