gantt-task-react-powern
Version:
Interactive Gantt Chart for React with TypeScript.
34 lines (33 loc) • 881 B
TypeScript
import React from "react";
import { Task } from "../../types/public-types";
import { BarTask } from "../../types/bar-task";
export declare type TooltipProps = {
task: BarTask;
type: string;
arrowIndent: number;
rtl: boolean;
svgContainerHeight: number;
svgContainerWidth: number;
svgWidth: number;
headerHeight: number;
taskListWidth: number;
scrollX: number;
scrollY: number;
rowHeight: number;
fontSize: string;
fontFamily: string;
TooltipContent: React.FC<{
task: Task;
fontSize: string;
fontFamily: string;
type: string;
}>;
isDragging?: boolean;
};
export declare const Tooltip: React.FC<TooltipProps>;
export declare const StandardTooltipContent: React.FC<{
task: Task;
fontSize: string;
fontFamily: string;
type: string;
}>;