@progress/kendo-angular-scheduler
Version:
Kendo UI Scheduler Angular - Outlook or Google-style angular scheduler calendar. Full-featured and customizable embedded scheduling from the creator developers trust for professional UI components.
60 lines (59 loc) • 1.57 kB
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
* Represents an instance of a Scheduler calendar event.
*/
export interface SchedulerEvent {
/**
* The unique identifier of the event.
* Typically, the ID is a number.
* Can also be a string or an object.
*/
id?: any;
/**
* A reference to the original data item, if any.
*/
dataItem?: any;
/**
* The start date of the event.
*/
start: Date;
/**
* The timezone name for the start date.
*/
startTimezone?: string;
/**
* The end date of the event.
*/
end: Date;
/**
* The timezone name for the end date.
*/
endTimezone?: string;
/**
* A Boolean flag which indicates that the event occurs throughout the day.
*/
isAllDay?: boolean;
/**
* The title of the event.
*/
title: string;
/**
* The detailed description of the event.
*/
description?: string;
/**
* The rule which describes the recurring pattern of the event.
*/
recurrenceRule?: string;
/**
* The `id` of the parent recurring event.
*/
recurrenceId?: any;
/**
* The recurrence exceptions, if any.
*/
recurrenceExceptions?: Date[];
}