react-day-picker
Version:
Customizable Date Picker for React
10 lines (9 loc) • 340 B
TypeScript
import { CalendarWeek } from "./CalendarWeek.js";
/** Represent a month in a calendar year. Contains the weeks within the month. */
export declare class CalendarMonth {
constructor(month: Date, weeks: CalendarWeek[]);
/** The date of the month. */
date: Date;
/** The weeks within the month. */
weeks: CalendarWeek[];
}