UNPKG

@syncfusion/ej2-gantt

Version:
22 lines (18 loc) 416 B
import { Property, ChildProperty } from '@syncfusion/ej2-base'; /** * Interface for a class DayWorkingTime */ export interface DayWorkingTimeModel { /** * 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; }