Skip to main content

CalendarData


The data displayed in the calendar, including events

Interface

interface CalendarData {
startAt: Date;
endAt: Date;
content: string;
color: string;
id: string;
}

Properties

PropertyTypeDescription
colorstringThe color associated with the event, typically used for visual distinction in the calendar.
contentstringThe content or description of the event.
endAtDateThe ending date and time of the event.
idstringA unique identifier for the event.
startAtDateThe starting date and time of the event.