gantt-task-react-pro
Version:
fork gantt-task-react
13 lines (12 loc) • 335 B
TypeScript
import React from "react";
import { Task } from "../../types/public-types";
export declare type GridBodyProps = {
tasks: Task[];
dates: Date[];
svgWidth: number;
rowHeight: number;
columnWidth: number;
todayColor: string;
rtl: boolean;
};
export declare const GridBody: React.FC<GridBodyProps>;