gantt-task-react-powern
Version:
Interactive Gantt Chart for React with TypeScript.
15 lines (14 loc) • 408 B
TypeScript
import React from "react";
import { BarTask } from "../../types/bar-task";
import { Dependency } from "../../types/public-types";
declare type ArrowProps = {
taskFrom: BarTask;
taskTo: BarTask;
rowHeight: number;
taskHeight: number;
arrowIndent: number;
arrowColor: string;
dependencyType: Dependency;
};
export declare const Arrow: React.FC<ArrowProps>;
export {};