instanceOfImpactAnalysisResponse() — typescript-sdk Function Reference
Architecture documentation for the instanceOfImpactAnalysisResponse() function in ImpactAnalysisResponse.ts from the typescript-sdk codebase.
Entity Profile
Relationship Graph
Source Code
src/models/ImpactAnalysisResponse.ts lines 64–69
export function instanceOfImpactAnalysisResponse(value: object): value is ImpactAnalysisResponse {
if (!('metadata' in value) || value['metadata'] === undefined) return false;
if (!('impacts' in value) || value['impacts'] === undefined) return false;
if (!('globalMetrics' in value) || value['globalMetrics'] === 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