MCPcopy
hub / github.com/DHTMLX/gantt / IInternalLink

Interface IInternalLink

src/types.d.ts:135–149  ·  view source on GitHub ↗

* Internal representation of link, used for auto scheduling and graph network calculations

Source from the content-addressed store, hash-verified

133 * Internal representation of link, used for auto scheduling and graph network calculations
134 */
135interface 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
151interface IDurationFormatterLabel {
152 full: string;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected