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