js-year-calendar
Version:
A fully customizable year calendar widget
15 lines (14 loc) • 342 B
TypeScript
export default interface CalendarPeriodChangedEventObject {
/**
* The beginning of the new period.
*/
startDate: Date;
/**
* The end of the new period.
*/
endDate: Date;
/**
* Indicates whether the automatic render after period changing must be prevented.
*/
preventRendering: boolean;
}