@wamra/gantt-task-react
Version:
Interactive Gantt Chart for React with TypeScript
10 lines (9 loc) • 341 B
TypeScript
import React from "react";
import { ColorStyles } from "../../types/public-types";
export type TaskListHeaderActionsProps = {
onCollapseAll: () => void;
onExpandFirstLevel: () => void;
onExpandAll: () => void;
colors: Partial<ColorStyles>;
};
export declare const TaskListHeaderActions: React.FC<TaskListHeaderActionsProps>;