UNPKG

@progress/kendo-angular-gantt

Version:
20 lines (19 loc) 696 B
/**----------------------------------------------------------------------------------------- * 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 declare enum DependencyType { FF = 0, FS = 1, SF = 2, SS = 3 }