density.d.ts 208 B

12345678
  1. import { ShapeComponent as SC } from '../../runtime';
  2. export type DensityOptions = {
  3. colorAttribute: 'fill' | 'stroke';
  4. };
  5. /**
  6. * Draw density shape.
  7. */
  8. export declare const Density: SC<DensityOptions>;