sankey.d.ts 266 B

12345678
  1. import { CompositionComponent as CC } from '../runtime';
  2. import { SankeyMark } from '../spec';
  3. export type SankeyOptions = Omit<SankeyMark, 'type'>;
  4. /**
  5. * @todo Add interaction
  6. * @todo Add source-link color mode
  7. */
  8. export declare const Sankey: CC<SankeyOptions>;