@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.
34 lines (33 loc) • 952 B
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
* Provides arguments for the `slotClass` function.
*/
export interface SlotClassArgs {
/**
* Sets the start date of the slot.
*/
start?: Date;
/**
* Sets the end date of the slot.
*/
end?: Date;
/**
* Specifies if the slot is an all-day slot.
*/
isAllDay?: boolean;
/**
* Provides the slot resources.
*/
resources?: any[];
/**
* Provides the slot event. Applies to the **Agenda** view.
*/
event?: any;
/**
* Provides the slot events. Applies to the **Year** view.
*/
events?: any[];
}