curve.d.ts 256 B

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