UNPKG

react-modern-gantt

Version:

A modern, customizable Gantt chart component for React applications

9 lines (8 loc) 234 B
import { Task } from "@/types"; /** * Calculates the position and width of a task in percentage */ export declare function calculateTaskPosition(task: Task, startDate: Date, endDate: Date): { left: string; width: string; };