UNPKG

gantt-task-react-powern

Version:

Interactive Gantt Chart for React with TypeScript.

10 lines (9 loc) 667 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[], criticalPathType: string): void; export declare const getParentWbs: (wbs: string) => string | undefined;