sankey.d.ts 336 B

1234567
  1. import { DataComponent as DC } from '../runtime';
  2. export type SankeyOptions = Omit<Record<string, any>, 'type'>;
  3. /**
  4. * Compute the node and edge position, return a graph representing the Sankey layout. All will be normalized to [[0, 0], [1, 1]]
  5. * Required graph data (nodes, edges)
  6. */
  7. export declare const Sankey: DC<SankeyOptions>;