@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.
25 lines (24 loc) • 752 B
TypeScript
import { ChildProperty } from '@syncfusion/ej2-base';
/**
* A class that represents the configuration of working hours related options of scheduler.
*/
export declare class WorkHours extends ChildProperty<WorkHours> {
/**
* 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;
}