@progress/kendo-react-gantt
Version:
React Gantt enables the display of self-referencing tabular data with many features. KendoReact Gantt package
34 lines (33 loc) • 950 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 { DependencyType } from './DependencyType.js';
/**
* Represents an instance of a Gantt dependency.
*/
export interface GanttDependency {
/**
* The `id` of the origin task of this dependency.
*/
fromId: string | number;
/**
* The unique identifier of the dependency.
*/
id: string | number;
/**
* @hidden
*/
uid?: string | number;
/**
* The `id` of the destination task of this dependency.
*/
toId: string | number;
/**
* The type of the dependency.
*/
type: DependencyType;
}