venn.d.ts 261 B

1234567
  1. import { DataComponent as DC } from '../runtime';
  2. import { VennDataTransform } from '../spec';
  3. export type VennOptions = Omit<VennDataTransform, 'type'>;
  4. /**
  5. * Layout venn data, get the path string for each set.
  6. */
  7. export declare const Venn: DC<VennOptions>;