@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) • 953 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
*-------------------------------------------------------------------------------------------
*/
/**
* Defines the model fields that will be used for creating `GanttDependency` instances.
*/
export interface GanttDependencyModelFields {
/**
* The name of the `ID` model field.
* Defaults to `"id"`.
*/
id?: string;
/**
* The name of the from task id model field.
* Defaults to `"fromId"`.
*/
fromId?: string;
/**
* The name of the to task id model field.
* Defaults to `"toId"`.
*/
toId?: string;
/**
* The name of the type model field.
* Defaults to `"type"`.
*/
type?: string;
}