Skip to main content

CalendarMetadata


The data associated with the date, including additional metadata.

Interface

interface CalendarMetadata {
isStart: boolean;
isEnd: boolean;
datesInRange: DateString[];
}

Properties

PropertyTypeDescription
datesInRangeDateString[]An array of dates that fall between the event's start date (startAt) and end date (endAt), inclusive.
isEndbooleanIndicates whether the event ends on this date. true means this date is the end of the event, and false otherwise.
isStartbooleanIndicates whether the event starts on this date. true means this date is the start of the event, and false otherwise.