UNPKG

react-gantt-lightweight

Version:
15 lines (14 loc) 418 B
/// <reference types="react" /> import { GanttDataProps, GanttHeadProps } from "../types"; import "./GanttOverview.css"; declare const GanttOverview: React.FC<{ head: GanttHeadProps[]; list: GanttDataProps[]; headWidth: string; headBodyPaddingY: number; headBodyPaddingX: number; scrollBarHeight: number; open: boolean; onChange: (e: boolean) => void; }>; export default GanttOverview;