vector.d.ts 254 B

12345678
  1. import { ArrowOptions } from '../utils';
  2. import { ShapeComponent as SC } from '../../runtime';
  3. export type VectorOptions = ArrowOptions;
  4. /**
  5. * Connect 2 points with a single line with arrow.
  6. * ----->
  7. */
  8. export declare const Vector: SC<VectorOptions>;