g3-toolkit API Reference
    Preparing search index...

    Interface SerializedUGM

    Serialized UGM format for save/restore (T4).

    interface SerializedUGM {
        edges: {
            attributes: EdgeAttributes;
            id: string;
            source: string;
            target: string;
        }[];
        nodes: { attributes: NodeAttributes; id: string }[];
    }
    Index

    Properties

    Properties

    edges: {
        attributes: EdgeAttributes;
        id: string;
        source: string;
        target: string;
    }[]
    nodes: { attributes: NodeAttributes; id: string }[]