mirror of
https://github.com/apache/superset.git
synced 2026-04-20 00:24:38 +00:00
chore: add type checking in plugin test directory (#19387)
This commit is contained in:
@@ -32,7 +32,7 @@ export type AxisTickLineStyle = {
|
||||
export type EchartsGaugeFormData = QueryFormData & {
|
||||
colorScheme?: string;
|
||||
groupby: QueryFormColumn[];
|
||||
metric?: object;
|
||||
metric?: string;
|
||||
rowLimit: number;
|
||||
minVal: number;
|
||||
maxVal: number;
|
||||
@@ -78,7 +78,8 @@ export const DEFAULT_FORM_DATA: Partial<EchartsGaugeFormData> = {
|
||||
emitFilter: false,
|
||||
};
|
||||
|
||||
export interface EchartsGaugeChartProps extends ChartProps {
|
||||
export interface EchartsGaugeChartProps
|
||||
extends ChartProps<EchartsGaugeFormData> {
|
||||
formData: EchartsGaugeFormData;
|
||||
queriesData: ChartDataResponseResult[];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user