gantt-task-react-v
Version:
Interactive Gantt Chart for React with TypeScript.
3 lines (2 loc) • 427 B
TypeScript
import type { DependencyMap, DependencyMargins, DependentMap, MapTaskToCoordinates, TaskMapByLevel, RenderTask } from "../types";
export declare const getDependencyMap: (tasks: readonly RenderTask[], visibleTasksMirror: Readonly<Record<string, true>>, tasksMap: TaskMapByLevel, mapTaskToCoordinates: MapTaskToCoordinates, fullRowHeight: number, isShowCriticalPath: boolean) => [DependencyMap, DependentMap, DependencyMargins];