@antv/g2
Version:
the Grammar of Graphics in Javascript
8 lines (7 loc) • 301 B
TypeScript
import { DataComponent as DC } from '../runtime';
export type ClusterOptions = Omit<Record<string, any>, 'type'>;
export declare const hierarchyFunction: (layoutFunction: any) => (options: any) => (data: any) => {
nodes: any[];
edges: any;
};
export declare const Cluster: DC<ClusterOptions>;