UNPKG

react-day-picker

Version:

Customizable Date Picker for React

12 lines 304 B
/** * Represents a week in a calendar month. * * A `CalendarWeek` contains the days within the week and the week number. */ export class CalendarWeek { constructor(weekNumber, days) { this.days = days; this.weekNumber = weekNumber; } } //# sourceMappingURL=CalendarWeek.js.map