We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 093b81a commit 8c3769eCopy full SHA for 8c3769e
packages/charts/src/chart_types/heatmap/specs/heatmap.ts
@@ -98,7 +98,7 @@ interface HeatmapSpecInternal<D extends BaseDatum = Datum> extends Spec {
98
yAxisLabelFormatter: LabelAccessor<string | number>;
99
}
100
/** @public */
101
-export type HeatmapSpec = Prettify<HeatmapSpecInternal>;
+export type HeatmapSpec<D extends BaseDatum = Datum> = Prettify<HeatmapSpecInternal<D>>;
102
103
/** @internal */
104
export const buildProps = buildSFProps<HeatmapSpecInternal>()(
0 commit comments