Type Alias DependencyGraphJSON
DependencyGraphJSON: (
| {
id: string;
type: | "ClassDeclaration"
| "FunctionDeclaration"
| "InterfaceDeclaration"
| "TypeAliasDeclaration"
| "VariableDeclaration";
}
| { id: string; source: string; target: string }
)[]
| {
id: string;
type: | "ClassDeclaration"
| "FunctionDeclaration"
| "InterfaceDeclaration"
| "TypeAliasDeclaration"
| "VariableDeclaration";
}
| { id: string; source: string; target: string }
)[]
Defines the JSON output of the dependencies graph. Entries with
id&typeare nodes and those withsource&targetare edges.