react-gantt-lightweight
Version:
14 lines (13 loc) • 435 B
TypeScript
import React from "react";
import { GanttDataProps, GanttStatusListProps, GanttType } from "../types";
declare const GanttTime: React.FC<{
list: GanttDataProps[];
headBodyPaddingY: number;
refresh: boolean;
showLine: boolean;
ganttType: GanttType;
statusList?: GanttStatusListProps[];
onChangeScrollBarHeight: (e: number) => void;
onClickText: (e: GanttDataProps) => void;
}>;
export default GanttTime;