decode-deps
Version:
Dependency Graph
17 lines (16 loc) • 342 B
TypeScript
export interface TreeNode {
id: string;
children: TreeNode[];
size: number;
linkType?: "internal" | "external";
}
export interface NodeType {
id: string;
size: number;
linkType: "internal" | "external";
}
export interface LinkType {
source: string;
target: string;
linkType: "internal" | "external";
}