heatmap.d.ts 234 B

1234567
  1. import { MarkComponent as MC } from '../runtime';
  2. import { HeatmapMark } from '../spec';
  3. export type HeatmapOptions = Omit<HeatmapMark, 'type'>;
  4. /**
  5. * Draw heatmap with gradient.
  6. */
  7. export declare const Heatmap: MC<HeatmapOptions>;