@progress/kendo-angular-gantt
Version:
Kendo UI Angular Gantt
32 lines (31 loc) • 1.03 kB
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
* Represents the dependency type when you connect two tasks.
*
* 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 declare enum DependencyType {
/**
* Specifies that task B can't finish before task A finishes.
*/
FF = 0,
/**
* Specifies that task B can't start before task A finishes.
*/
FS = 1,
/**
* Specifies that task A can't finish before task B starts.
*/
SF = 2,
/**
* Specifies that task B can't start before task A starts.
*/
SS = 3
}