@progress/kendo-react-gantt
Version:
React Gantt enables the display of self-referencing tabular data with many features. KendoReact Gantt package
28 lines (27 loc) • 992 B
TypeScript
/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
import { Slot } from '../interfaces/Slot.js';
import { GanttViewTimelineHeaderCellProps } from '../interfaces/GanttViewTimelineHeaderCellProps.js';
import * as React from 'react';
/**
* @hidden
*/
export interface BaseViewProps {
slotLevels: Slot[][];
slotWidth: number;
timelineHeaderCell?: React.ComponentType<GanttViewTimelineHeaderCellProps>;
}
/**
* @hidden
*/
export interface BaseViewHandle {
scrollIntoView: (options: {
rowIndex?: number;
}) => void;
}
export declare const BaseView: React.ForwardRefExoticComponent<BaseViewProps & React.RefAttributes<BaseViewHandle | null>>;