export interface X6NodesType { id?: string; x: number; y: number; width?: number; height?: number; label: string; shape?: string; [proppName: string]: any; } export interface X6EdgesType { source: string; target: string; [proppName: string]: any; }