arc.d.ts 251 B

12345678
  1. import { ShapeComponent as SC } from '../../runtime';
  2. export type ArcOptions = Record<string, any>;
  3. /**
  4. * Connect points for 2 points:
  5. * - In rect, draw half circle.
  6. * - In polar, draw quadratic curve.
  7. */
  8. export declare const Arc: SC<ArcOptions>;