markmv - v1.39.2
    Preparing search index...

    Interface LinkGraph

    Complete link graph representation.

    interface LinkGraph {
        nodes: GraphNode[];
        edges: GraphEdge[];
        metadata: {
            filesProcessed: number;
            totalLinks: number;
            baseDir: string;
            generatedAt: string;
            options: Required<LinkGraphOptions>;
        };
        analysis: {
            hubs: string[];
            orphans: string[];
            circularReferences: string[][];
            stronglyConnected: string[][];
        };
    }
    Index
    nodes: GraphNode[]

    All nodes in the graph

    edges: GraphEdge[]

    All edges in the graph

    metadata: {
        filesProcessed: number;
        totalLinks: number;
        baseDir: string;
        generatedAt: string;
        options: Required<LinkGraphOptions>;
    }

    Graph metadata

    Type Declaration

    • filesProcessed: number

      Total number of files processed

    • totalLinks: number

      Total number of links found

    • baseDir: string

      Base directory used for calculations

    • generatedAt: string

      Generation timestamp

    • options: Required<LinkGraphOptions>

      Options used for generation

    analysis: {
        hubs: string[];
        orphans: string[];
        circularReferences: string[][];
        stronglyConnected: string[][];
    }

    Graph analysis results

    Type Declaration

    • hubs: string[]

      Hub nodes (high connectivity)

    • orphans: string[]

      Orphaned nodes (no connections)

    • circularReferences: string[][]

      Circular references detected

    • stronglyConnected: string[][]

      Strongly connected components