curve.d.ts 292 B

12345678
  1. import { CurveFactory, CurveFactoryLineOnly } from 'd3-shape';
  2. import { ShapeComponent as SC } from '../../runtime';
  3. export type CurveOptions = {
  4. curve?: CurveFactory | CurveFactoryLineOnly;
  5. gradient?: boolean;
  6. [key: string]: any;
  7. };
  8. export declare const Curve: SC<CurveOptions>;