@wamra/gantt-task-react
Version:
Interactive Gantt Chart for React with TypeScript
4 lines (3 loc) • 324 B
TypeScript
import type { ChangeAction, DependentMap, Task, TaskOrEmpty } from "../types/public-types";
export declare const fillDependentTasksForTask: (resSet: Set<Task>, task: TaskOrEmpty, dependentMap: DependentMap) => void;
export declare const getDependentTasks: (changeAction: ChangeAction, dependentMap: DependentMap) => Task[];