vhv.d.ts 298 B

123456789101112
  1. import { ShapeComponent as SC } from '../../runtime';
  2. export type VHVOptions = {
  3. /**
  4. * The ratio of line corner, default: 1/3.
  5. */
  6. cornerRatio?: number;
  7. [key: string]: any;
  8. };
  9. /**
  10. * Connect 2 points with a VHV line, used in tree.
  11. */
  12. export declare const VHV: SC<VHVOptions>;