@progress/kendo-angular-gantt
Version:
Kendo UI Angular Gantt
21 lines (20 loc) • 966 B
JavaScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
* The dependency type when two tasks are connected.
*
* The supported values are:
* * `FF`—from 'finish' to 'finish'
* * `FS`—from 'finish' to 'start'
* * `SS`—from 'start' to 'start'
* * `SF`—from 'start' to 'finish'
*/
export var DependencyType;
(function (DependencyType) {
DependencyType[DependencyType["FF"] = 0] = "FF";
DependencyType[DependencyType["FS"] = 1] = "FS";
DependencyType[DependencyType["SF"] = 2] = "SF";
DependencyType[DependencyType["SS"] = 3] = "SS"; // task B can't start before task A starts
})(DependencyType || (DependencyType = {}));