gantt-task-react-powern
Version:
Interactive Gantt Chart for React with TypeScript.
15 lines (14 loc) • 389 B
TypeScript
import React from "react";
import { Task } from "../../types/public-types";
export declare type GridBodyProps = {
tasks: Task[];
scheduleType: string;
dates: Date[];
svgWidth: number;
rowHeight: number;
columnWidth: number;
todayColor: string;
weekendColor: string;
rtl: boolean;
};
export declare const GridBody: React.FC<GridBodyProps>;