smooth.d.ts 213 B

123456
  1. import { ShapeComponent as SC } from '../../runtime';
  2. export type SmoothOptions = Record<string, any>;
  3. /**
  4. * Connect 2 points with a smooth line, used in tree.
  5. */
  6. export declare const Smooth: SC<SmoothOptions>;