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