UNPKG

@progress/kendo-react-gantt

Version:

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

33 lines (32 loc) 980 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 './DataItem.js'; /** * Specifies the available [DataAction](https://www.telerik.com/kendo-react-ui/components/gantt/api/data_action) types. */ export declare enum DATA_ACTION { create = 0, update = 1, remove = 2 } /** * Specifies the action which can be dispatched through the Gantt context. */ export interface DataAction { /** * The `type` of the action. The available types are: * - `create` * - `update` * - `remove` */ type: DATA_ACTION; /** * Specifies the `dataItem` being edited. */ dataItem: DataItem; }