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) 809 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 { DataItem } from '../../interfaces/DataItem.js'; import { AddDirection } from '../../interfaces/AddDirection.js'; import * as React from 'react'; /** @hidden */ export declare const AddButton: React.ForwardRefExoticComponent<{ selectedTask: DataItem | null; onClick: (options: { nativeEvent: any; syntheticEvent: any; direction: AddDirection; }) => void; } & React.RefAttributes<unknown>>;