UNPKG

@progress/kendo-react-gantt

Version:

React Gantt enables the display of self-referencing tabular data with many features. KendoReact Gantt package

20 lines (19 loc) 794 B
/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { TreeListCellProps } from '@progress/kendo-react-treelist'; import * as React from 'react'; /** @hidden */ export interface GanttTaskProps extends TreeListCellProps { } /** @hidden */ export interface GanttTaskHandle { element: HTMLDivElement | null; dataItem: any; } /** @hidden */ export declare const GanttTask: React.ForwardRefExoticComponent<GanttTaskProps & React.RefAttributes<GanttTaskHandle>>;