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