Remove edge import

Signed-off-by: TA31OU <kyle.opperman@ing.com>
This commit is contained in:
TA31OU
2025-10-06 11:26:23 +02:00
parent 3beb1dee93
commit 25aec46a8b
@@ -21,7 +21,6 @@
*/
import { ReactNode } from 'react';
import dagre from '@dagrejs/dagre';
/**
* Types for the {@link DependencyGraph} component.
@@ -114,7 +113,11 @@ export namespace DependencyGraphTypes {
to?: string;
relations?: string[];
};
id: dagre.Edge;
id: {
v: string;
w: string;
name?: string | undefined;
};
};
/**