UNPKG

react-modern-gantt

Version:

A modern, customizable Gantt chart component for React applications with export functionality

10 lines (9 loc) 289 B
import { TaskGroup } from "@/types"; /** * Finds the earliest start date from all tasks */ export declare function findEarliestDate(taskGroups: TaskGroup[]): Date; /** * Finds the latest end date from all tasks */ export declare function findLatestDate(taskGroups: TaskGroup[]): Date;