CircularDependencyMetadataFromJSONTyped() — typescript-sdk Function Reference
Architecture documentation for the CircularDependencyMetadataFromJSONTyped() function in CircularDependencyMetadata.ts from the typescript-sdk codebase.
Entity Profile
Dependency Diagram
graph TD 3cce1c91_1b6d_db0d_1afd_d9b049e36531["CircularDependencyMetadataFromJSONTyped()"] d4603f10_832c_425f_f909_14b3b9c78b40["CircularDependencyMetadataFromJSON()"] d4603f10_832c_425f_f909_14b3b9c78b40 -->|calls| 3cce1c91_1b6d_db0d_1afd_d9b049e36531 style 3cce1c91_1b6d_db0d_1afd_d9b049e36531 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
src/models/CircularDependencyMetadata.ts lines 75–88
export function CircularDependencyMetadataFromJSONTyped(json: any, ignoreDiscriminator: boolean): CircularDependencyMetadata {
if (json == null) {
return json;
}
return {
'totalFiles': json['totalFiles'],
'totalImports': json['totalImports'],
'cycleCount': json['cycleCount'],
'analysisMethod': json['analysisMethod'],
'analysisStartTime': json['analysisStartTime'] == null ? undefined : (new Date(json['analysisStartTime'])),
'analysisEndTime': json['analysisEndTime'] == null ? undefined : (new Date(json['analysisEndTime'])),
};
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does CircularDependencyMetadataFromJSONTyped() do?
CircularDependencyMetadataFromJSONTyped() is a function in the typescript-sdk codebase.
What calls CircularDependencyMetadataFromJSONTyped()?
CircularDependencyMetadataFromJSONTyped() is called by 1 function(s): CircularDependencyMetadataFromJSON.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free