UNPKG

gantt-task-react-powern

Version:

Interactive Gantt Chart for React with TypeScript.

9 lines (8 loc) 568 B
import React from "react"; import { GanttProps, Task } from "../../types/public-types"; export declare const Gantt: React.FunctionComponent<GanttProps>; export declare function topologicalOrderingHelper(taskID: string, taskMap: {}, sortedTaskList: string[]): boolean; export declare function getCriticalPaths(leafTasks: Task[]): any[][]; export declare function computeCriticalPath(taskID: string, taskMap: {}): void; export declare function uncolorAll(tasks: Task[]): void; export declare function colorPath(path: Task[], color: string, tasks: Task[]): void;