gantt-task-react-powern 0.6.37 → 0.6.39

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -7,10 +7,6 @@ export declare function isHoliday(date: Date, cal: CalendarDefinition): boolean;
7
7
  export declare function isOffDay(date: Date, cal: CalendarDefinition): boolean;
8
8
  /** True if the date is a regular working day (not off_day, not holiday). */
9
9
  export declare function isWorkingDay(date: Date, cal: CalendarDefinition): boolean;
10
- /**
11
- * Returns the shift windows (in minutes since midnight) for a given date.
12
- * Returns [] for off days / holidays.
13
- */
14
10
  export declare function getShiftsForDay(date: Date, cal: CalendarDefinition): Array<{
15
11
  start: number;
16
12
  end: number;