UNPKG

@huynhduluong/gantt-task-react

Version:

Interactive Gantt Chart for React with TypeScript

19 lines (18 loc) 507 B
import React from "react"; import { Task } from "../../types/public-types"; export declare type GridBodyProps = { tasks: Task[]; dates: Date[]; svgWidth: number; rowHeight: number; columnWidth: number; todayColumnWidth: number; todayColor: string; weekendColor: string; rtl: boolean; hideTicks: boolean; hideRowLines: boolean; hideWeekends: boolean; hideAssignerTicks: boolean; }; export declare const GridBody: React.FC<GridBodyProps>;