cluster.d.ts 301 B

1234567
  1. import { DataComponent as DC } from '../runtime';
  2. export type ClusterOptions = Omit<Record<string, any>, 'type'>;
  3. export declare const hierarchyFunction: (layoutFunction: any) => (options: any) => (data: any) => {
  4. nodes: any[];
  5. edges: any;
  6. };
  7. export declare const Cluster: DC<ClusterOptions>;