@samatawy/diagrams
    Preparing search index...

    Interface IGroup

    The IGroup interface defines the properties of a group in the diagram, including its ID and the nodes it contains.

    interface IGroup {
        id: string;
        nodes: string[];
    }
    Index

    Properties

    Properties

    id: string

    The unique identifier of the group.

    nodes: string[]

    An array of node IDs that belong to this group.