ClassificationStatsFromJSONTyped() — typescript-sdk Function Reference
Architecture documentation for the ClassificationStatsFromJSONTyped() function in ClassificationStats.ts from the typescript-sdk codebase.
Entity Profile
Dependency Diagram
graph TD 15b259b0_b9b0_6128_d4ef_c867beaf26b5["ClassificationStatsFromJSONTyped()"] 05250eff_f0eb_2258_e7b4_7bf8a4d4b270["ClassificationStats.ts"] 15b259b0_b9b0_6128_d4ef_c867beaf26b5 -->|defined in| 05250eff_f0eb_2258_e7b4_7bf8a4d4b270 ff786a28_4304_99c1_7057_fbb48c3c17a6["ClassificationStatsFromJSON()"] ff786a28_4304_99c1_7057_fbb48c3c17a6 -->|calls| 15b259b0_b9b0_6128_d4ef_c867beaf26b5 style 15b259b0_b9b0_6128_d4ef_c867beaf26b5 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
src/models/ClassificationStats.ts lines 126–146
export function ClassificationStatsFromJSONTyped(json: any, ignoreDiscriminator: boolean): ClassificationStats {
if (json == null) {
return json;
}
return {
'nodeCount': json['nodeCount'],
'relationshipCount': json['relationshipCount'],
'nodeTypes': json['nodeTypes'],
'relationshipTypes': json['relationshipTypes'],
'domainCount': json['domainCount'],
'subdomainCount': json['subdomainCount'],
'assignedFileCount': json['assignedFileCount'],
'assignedFunctionCount': json['assignedFunctionCount'],
'assignedClassCount': json['assignedClassCount'],
'fileAssignments': json['fileAssignments'],
'functionAssignments': json['functionAssignments'],
'unassignedFunctions': json['unassignedFunctions'],
'classAssignments': json['classAssignments'],
};
}
Domain
Subdomains
Defined In
Called By
Source
Frequently Asked Questions
What does ClassificationStatsFromJSONTyped() do?
ClassificationStatsFromJSONTyped() is a function in the typescript-sdk codebase, defined in src/models/ClassificationStats.ts.
Where is ClassificationStatsFromJSONTyped() defined?
ClassificationStatsFromJSONTyped() is defined in src/models/ClassificationStats.ts at line 126.
What calls ClassificationStatsFromJSONTyped()?
ClassificationStatsFromJSONTyped() is called by 1 function(s): ClassificationStatsFromJSON.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free