@syncfusion/ej2-schedule
Version:
Flexible scheduling library with more built-in features and enhanced customization options similar to outlook and google calendar, allowing the users to plan and manage their appointments with efficient data-binding support.
29 lines (24 loc) • 680 B
TypeScript
import { Property, ChildProperty } from '@syncfusion/ej2-base';
/**
* Interface for a class WorkHours
*/
export interface WorkHoursModel {
/**
* When set to `true`, highlights the cells of working hour range with an active color.
*
* @default true
*/
highlight?: boolean;
/**
* It accepts the time string in short skeleton format `Hm` and usually denotes the start of the working hour range.
*
* @default '09:00'
*/
start?: string;
/**
* It accepts the time string in short skeleton format `Hm` and usually denotes the end of the working hour range.
*
* @default '18:00'
*/
end?: string;
}