* Internal representation of link, used for auto scheduling and graph network calculations
| 133 | * Internal representation of link, used for auto scheduling and graph network calculations |
| 134 | */ |
| 135 | interface IInternalLink { |
| 136 | hashSum: string; |
| 137 | id: LinkID; |
| 138 | lag: number; |
| 139 | sourceLag: number; |
| 140 | targetLag: number; |
| 141 | trueLag: number; |
| 142 | link: LinkType; |
| 143 | preferredStart: Date; |
| 144 | source: TaskID; |
| 145 | sourceParent: TaskID; |
| 146 | target: TaskID; |
| 147 | targetParent: TaskID; |
| 148 | subtaskLink?: boolean; |
| 149 | } |
| 150 | |
| 151 | interface IDurationFormatterLabel { |
| 152 | full: string; |
nothing calls this directly
no outgoing calls
no test coverage detected