(value: string)
| 13 | ]; |
| 14 | |
| 15 | export function isValidDependencyRelType(value: string): value is TaskDependencyRelType { |
| 16 | return VALID_RELATIONSHIP_TYPES.includes(value as TaskDependencyRelType); |
| 17 | } |
| 18 | |
| 19 | export function extractDependencyUid(entry: unknown): string { |
| 20 | if (typeof entry === "string") { |
no outgoing calls
no test coverage detected