UNPKG

@antv/g2

Version:

the Grammar of Graphics in Javascript

8 lines (7 loc) 354 B
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: import("@antv/vendor/d3-hierarchy").HierarchyLink<any>[]; }; export declare const Cluster: DC<ClusterOptions>;