UNPKG

@progress/kendo-angular-gantt

Version:
33 lines (32 loc) 1.25 kB
/**----------------------------------------------------------------------------------------- * 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 var DependencyType; (function (DependencyType) { /** * Specifies that task B can't finish before task A finishes. */ DependencyType[DependencyType["FF"] = 0] = "FF"; /** * Specifies that task B can't start before task A finishes. */ DependencyType[DependencyType["FS"] = 1] = "FS"; /** * Specifies that task A can't finish before task B starts. */ DependencyType[DependencyType["SF"] = 2] = "SF"; /** * Specifies that task B can't start before task A starts. */ DependencyType[DependencyType["SS"] = 3] = "SS"; })(DependencyType || (DependencyType = {}));