interface Node {
    attrs: {
        label: string;
        shape: string;
        [key: string]: string;
    };
    id: string;
}

Properties

Properties

attrs: {
    label: string;
    shape: string;
    [key: string]: string;
}
id: string