Interface GraphData

interface GraphData {
    attributes: string[];
    links: Edge[];
    nodes: Node[];
}

Properties

attributes: string[]
links: Edge[]
nodes: Node[]