@syncfusion/ej2-gantt
Version:
Essential JS 2 Gantt Component
19 lines (18 loc) • 453 B
TypeScript
import { ChildProperty } from '@syncfusion/ej2-base';
/**
* Defines the working time of the day in the project.
*/
export declare class DayWorkingTime extends ChildProperty<DayWorkingTime> {
/**
* Defines the start time of the working time range for the day.
*
* @default null
*/
from: number;
/**
* Defines the end time of the working time range for the day.
*
* @default null
*/
to: number;
}