radial.d.ts 452 B

1234567891011121314
  1. import { CoordinateComponent as CC } from '../runtime';
  2. import { RadialCoordinate } from '../spec';
  3. export type RadialOptions = Omit<RadialCoordinate, 'type'>;
  4. export declare const getRadialOptions: (options?: RadialOptions) => {
  5. transform?: import("../spec").CoordinateTransform[];
  6. startAngle: number;
  7. endAngle: number;
  8. innerRadius: number;
  9. outerRadius: number;
  10. };
  11. /**
  12. * Radial
  13. */
  14. export declare const Radial: CC<RadialOptions>;