feat(network): add orthogonal edge routing option

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
chihlasm
2026-04-13 20:17:33 +00:00
parent b7b0d41f92
commit 4529955f7d
3 changed files with 4 additions and 2 deletions

View File

@@ -28,7 +28,7 @@ export interface DiagramEdge {
connectionType: string
speed: string | null
notes: string | null
routing?: string | null
routing?: 'curved' | 'step' | 'orthogonal' | null
}
export interface DeviceTypeResponse {