@wamra/gantt-task-react
Version:
Interactive Gantt Chart for React with TypeScript
20 lines (19 loc) • 640 B
TypeScript
import React from "react";
import type { DateExtremity, ViewMode } from "../../types/public-types";
export type GridBodyProps = {
additionalLeftSpace: number;
columnWidth: number;
ganttFullHeight: number;
isUnknownDates: boolean;
startDate: Date;
todayColor: string;
holidayBackgroundColor: string;
rtl: boolean;
viewMode: ViewMode;
startColumnIndex: number;
endColumnIndex: number;
checkIsHoliday: (date: Date, dateExtremity: DateExtremity) => boolean;
getDate: (index: number) => Date;
minTaskDate: Date;
};
export declare const GridBody: React.NamedExoticComponent<GridBodyProps>;