@@ -5,6 +5,7 @@ import type {
5
5
AgBarSeriesThemeableOptions ,
6
6
AgBaseChartListeners ,
7
7
AgBaseChartOptions ,
8
+ AgBaseRadialSeriesThemeableOptions ,
8
9
AgBaseSeriesOptions ,
9
10
AgBaseThemeableChartOptions ,
10
11
AgBoxPlotSeriesThemeableOptions ,
@@ -57,6 +58,12 @@ export type MockBoxPlotStyler<TDatum, TContext> = NonNullable<
57
58
export type MockBoxPlotItemStyler < TDatum , TContext > = NonNullable <
58
59
AgBoxPlotSeriesThemeableOptions < TDatum , TContext > [ 'itemStyler' ]
59
60
> ;
61
+ type MockBaseRadialStyler < TDatum , TContext > = NonNullable <
62
+ AgBaseRadialSeriesThemeableOptions < TDatum , TContext > [ 'styler' ]
63
+ > ;
64
+ type MockBaseRadialItemStyler < TDatum , TContext > = NonNullable <
65
+ AgBaseRadialSeriesThemeableOptions < TDatum , TContext > [ 'itemStyler' ]
66
+ > ;
60
67
export type MockRadialColumnStyler < TDatum , TContext > = NonNullable <
61
68
AgRadialColumnSeriesThemeableOptions < TDatum , TContext > [ 'styler' ]
62
69
> ;
@@ -132,10 +139,8 @@ export type MockAPICallback<TDatum, TContext> =
132
139
| MockDonutCalloutLineItemStyler < TDatum , TContext >
133
140
| MockBoxPlotStyler < TDatum , TContext >
134
141
| MockBoxPlotItemStyler < TDatum , TContext >
135
- | MockRadialColumnStyler < TDatum , TContext >
136
- | MockRadialColumnItemStyler < TDatum , TContext >
137
- | MockNightingaleStyler < TDatum , TContext >
138
- | MockNightingaleItemStyler < TDatum , TContext >
142
+ | MockBaseRadialStyler < TDatum , TContext >
143
+ | MockBaseRadialItemStyler < TDatum , TContext >
139
144
| MockAxisLabelFormatter < TDatum , TContext >
140
145
| MockSeriesLabelFormatter < TDatum , TContext >
141
146
| MockTooltipRenderer < TDatum , TContext >
0 commit comments