fix: Typing of labelMap (#21181)

* fix: Typing of labelMap

* Adjusts val types
This commit is contained in:
Michael S. Molina
2022-08-26 08:22:57 -03:00
committed by GitHub
parent 5811262cf2
commit 1143e17742
11 changed files with 47 additions and 64 deletions

View File

@@ -19,7 +19,6 @@
import {
AnnotationLayer,
TimeGranularity,
DataRecordValue,
QueryFormData,
ChartProps,
ChartDataResponseResult,
@@ -142,7 +141,7 @@ export type EchartsMixedTimeseriesChartTransformedProps =
EChartTransformedProps<EchartsMixedTimeseriesFormData> & {
emitFilterB: boolean;
groupbyB: QueryFormColumn[];
labelMapB: Record<string, DataRecordValue[]>;
labelMapB: Record<string, string[]>;
seriesBreakdown: number;
xValueFormatter: TimeFormatter | StringConstructor;
};