Home / Function/ instanceOfTestedSibling() — typescript-sdk Function Reference

instanceOfTestedSibling() — typescript-sdk Function Reference

Architecture documentation for the instanceOfTestedSibling() function in TestedSibling.ts from the typescript-sdk codebase.

Entity Profile

Relationship Graph

Source Code

src/models/TestedSibling.ts lines 45–50

export function instanceOfTestedSibling(value: object): value is TestedSibling {
    if (!('name' in value) || value['name'] === undefined) return false;
    if (!('line' in value) || value['line'] === undefined) return false;
    if (!('testFiles' in value) || value['testFiles'] === undefined) return false;
    return true;
}

Domain

Subdomains

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free