react-gantt-lightweight
Version:
15 lines (14 loc) • 418 B
TypeScript
/// <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;