arc.d.ts 215 B

12345678
  1. import { ArcData, ArcOptions } from './types';
  2. /**
  3. * Layout for Arc / Chord diagram with d3 style.
  4. */
  5. export declare function Arc(options?: ArcOptions): (data: ArcData) => {
  6. nodes: any[];
  7. edges: any[];
  8. };