gantt-task-react-powern
Version:
Interactive Gantt Chart for React with TypeScript.
13 lines (12 loc) • 396 B
TypeScript
import React from "react";
export declare const TaskListHeaderDefault: React.FC<{
headerHeight: number;
rowWidth: string;
fontFamily: string;
fontSize: string;
scheduleType: string;
allSelected?: boolean;
onSelectAll?: (selected: boolean) => void;
columnWidths?: Record<string, number>;
onColumnResize?: (colId: string, width: number) => void;
}>;