Home / Type/ CodeGraphStats Type — typescript-sdk Architecture

CodeGraphStats Type — typescript-sdk Architecture

Architecture documentation for the CodeGraphStats type/interface in CodeGraphStats.ts from the typescript-sdk codebase.

Entity Profile

Dependency Diagram

graph TD
  1465d142_3d9d_a7b5_223e_a25dc64c817c["CodeGraphStats"]
  303e101f_576e_591a_bf19_bb12db362546["CodeGraphStats.ts"]
  1465d142_3d9d_a7b5_223e_a25dc64c817c -->|defined in| 303e101f_576e_591a_bf19_bb12db362546
  style 1465d142_3d9d_a7b5_223e_a25dc64c817c fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

src/models/CodeGraphStats.ts lines 21–76

export interface CodeGraphStats {
    /**
     * Total number of nodes in the graph
     * @type {number}
     * @memberof CodeGraphStats
     */
    nodeCount?: number;
    /**
     * Total number of relationships in the graph
     * @type {number}
     * @memberof CodeGraphStats
     */
    relationshipCount?: number;
    /**
     * Count of nodes by type
     * @type {{ [key: string]: number; }}
     * @memberof CodeGraphStats
     */
    nodeTypes?: { [key: string]: number; };
    /**
     * Count of relationships by type
     * @type {{ [key: string]: number; }}
     * @memberof CodeGraphStats
     */
    relationshipTypes?: { [key: string]: number; };
    /**
     * 
     * @type {number}
     * @memberof CodeGraphStats
     */
    filesProcessed?: number;
    /**
     * 
     * @type {number}
     * @memberof CodeGraphStats
     */
    classes?: number;
    /**
     * 
     * @type {number}
     * @memberof CodeGraphStats
     */
    functions?: number;
    /**
     * 
     * @type {number}
     * @memberof CodeGraphStats
     */
    types?: number;
    /**
     * 
     * @type {number}
     * @memberof CodeGraphStats
     */
    processingTimeMs?: number;
}

Frequently Asked Questions

What is the CodeGraphStats type?
CodeGraphStats is a type/interface in the typescript-sdk codebase, defined in src/models/CodeGraphStats.ts.
Where is CodeGraphStats defined?
CodeGraphStats is defined in src/models/CodeGraphStats.ts at line 21.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free