Interface NetworkData

interface NetworkData {
    links: {
        id: string;
        source: string;
        target: string;
        type: string;
    }[];
    nodes: {
        id: string;
        type: string;
    }[];
    numNodes: number;
    options: {
        showLinkLabels?: boolean;
        showNodeAnnotation?: boolean;
        showNodeLabels?: boolean;
        showTimeline?: boolean;
        showTransactionDetails?: boolean;
        showTransactionLinks?: boolean;
    };
}

Properties

links: {
    id: string;
    source: string;
    target: string;
    type: string;
}[]
nodes: {
    id: string;
    type: string;
}[]
numNodes: number
options: {
    showLinkLabels?: boolean;
    showNodeAnnotation?: boolean;
    showNodeLabels?: boolean;
    showTimeline?: boolean;
    showTransactionDetails?: boolean;
    showTransactionLinks?: boolean;
}