DeadCodeCandidateToJSON() — typescript-sdk Function Reference
Architecture documentation for the DeadCodeCandidateToJSON() function in DeadCodeCandidate.ts from the typescript-sdk codebase.
Entity Profile
Relationship Graph
Source Code
src/models/DeadCodeCandidate.ts lines 118–131
export function DeadCodeCandidateToJSON(value?: DeadCodeCandidate | null): any {
if (value == null) {
return value;
}
return {
'file': value['file'],
'name': value['name'],
'line': value['line'],
'type': value['type'],
'confidence': value['confidence'],
'reason': value['reason'],
};
}
Domain
Subdomains
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free