jiangping
2025-07-16 c2d3591648b215ab29fc14cab1c747ba58798412
1
2
3
4
5
6
7
8
import GlobalModel from '../../model/Global.js';
export interface ForceLayoutInstance {
    step(cb: (stopped: boolean) => void): void;
    warmUp(): void;
    setFixed(idx: number): void;
    setUnfixed(idx: number): void;
}
export default function graphForceLayout(ecModel: GlobalModel): void;