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