polygon.d.ts 256 B

1234567
  1. import { MarkComponent as MC } from '../runtime';
  2. import { PolygonMark } from '../spec';
  3. export type PolygonOptions = Omit<PolygonMark, 'type'>;
  4. /**
  5. * Convert value for each channel to polygon shapes.
  6. */
  7. export declare const Polygon: MC<PolygonOptions>;