- Go backend (server/)
- Frontend (web/, server/static/)
- Database and deployment files
- Scripts and docs
Co-Authored-By: 狸花猫/Claude-Qwen3.6-Plus 🐾
15 lines
380 B
TypeScript
15 lines
380 B
TypeScript
import { TreeGraphData } from '@antv/g6-core';
|
|
import { TreeLayoutConfig } from '../types';
|
|
declare class TreeLayout {
|
|
type: string;
|
|
radial: boolean;
|
|
data: TreeGraphData;
|
|
config: any;
|
|
private layoutMethod;
|
|
constructor(cfg: TreeLayoutConfig);
|
|
init(data: TreeGraphData): void;
|
|
execute(): any;
|
|
layout(data: any): any;
|
|
}
|
|
export default TreeLayout;
|