instanceOfDeadCodeAnalysisResponse() — typescript-sdk Function Reference
Architecture documentation for the instanceOfDeadCodeAnalysisResponse() function in DeadCodeAnalysisResponse.ts from the typescript-sdk codebase.
Entity Profile
Relationship Graph
Source Code
src/models/DeadCodeAnalysisResponse.ts lines 76–82
export function instanceOfDeadCodeAnalysisResponse(value: object): value is DeadCodeAnalysisResponse {
if (!('metadata' in value) || value['metadata'] === undefined) return false;
if (!('deadCodeCandidates' in value) || value['deadCodeCandidates'] === undefined) return false;
if (!('aliveCode' in value) || value['aliveCode'] === undefined) return false;
if (!('entryPoints' in value) || value['entryPoints'] === undefined) return false;
return true;
}
Domain
Subdomains
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free