Home / Type/ AliveCodeItem Type — typescript-sdk Architecture

AliveCodeItem Type — typescript-sdk Architecture

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

Entity Profile

Source Code

src/models/AliveCodeItem.ts lines 21–52

export interface AliveCodeItem {
    /**
     * File path relative to repository root.
     * @type {string}
     * @memberof AliveCodeItem
     */
    file: string;
    /**
     * Name of the function, class, or method.
     * @type {string}
     * @memberof AliveCodeItem
     */
    name: string;
    /**
     * Line number where the declaration starts.
     * @type {number}
     * @memberof AliveCodeItem
     */
    line: number;
    /**
     * Type of code element.
     * @type {string}
     * @memberof AliveCodeItem
     */
    type: AliveCodeItemTypeEnum;
    /**
     * Number of unique callers or references.
     * @type {number}
     * @memberof AliveCodeItem
     */
    callerCount: number;
}

Analyze Your Own Codebase

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

Try Supermodel Free