Home / Function/ EntryPointToJSON() — typescript-sdk Function Reference

EntryPointToJSON() — typescript-sdk Function Reference

Architecture documentation for the EntryPointToJSON() function in EntryPoint.ts from the typescript-sdk codebase.

Entity Profile

Relationship Graph

Source Code

src/models/EntryPoint.ts lines 100–112

export function EntryPointToJSON(value?: EntryPoint | null): any {
    if (value == null) {
        return value;
    }
    return {
        
        'file': value['file'],
        'name': value['name'],
        'line': value['line'],
        'type': value['type'],
        'reason': value['reason'],
    };
}

Domain

Subdomains

Analyze Your Own Codebase

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

Try Supermodel Free