interface Edge {
    attrs: {
        [key: string]: string;
    };
    source: string;
    target: string;
}

Properties

Properties

attrs: {
    [key: string]: string;
}
source: string
target: string