@argdown/core
    Preparing search index...

    Interface IGroupMapNode

    A group node within an argument map.

    Groups are clusters of child nodes and can be children of other groups.

    interface IGroupMapNode {
        children?: IMapNode[];
        color?: string;
        fontColor?: string;
        id: string;
        images?: string[];
        isClosed?: boolean;
        labelText?: string;
        labelTextRanges?: IRange[];
        labelTitle?: string;
        labelTitleRanges?: IRange[];
        level?: number;
        parent?: string;
        section?: ISection;
        tags?: string[];
        title?: string;
        type: GROUP_MAP_NODE;
    }

    Hierarchy (View Summary)

    Index

    Properties

    children?: IMapNode[]
    color?: string
    fontColor?: string
    id: string
    images?: string[]
    isClosed?: boolean
    labelText?: string
    labelTextRanges?: IRange[]
    labelTitle?: string
    labelTitleRanges?: IRange[]
    level?: number
    parent?: string
    section?: ISection
    tags?: string[]
    title?: string