File tree Expand file tree Collapse file tree 1 file changed +10
-7
lines changed Expand file tree Collapse file tree 1 file changed +10
-7
lines changed Original file line number Diff line number Diff line change @@ -3740,13 +3740,16 @@ export type ScaleChartOptions<TType extends ChartType = ChartType> = {
3740
3740
} ;
3741
3741
} ;
3742
3742
3743
- export type ChartOptions < TType extends ChartType = ChartType > = DeepPartial <
3744
- CoreChartOptions < TType > &
3745
- ElementChartOptions < TType > &
3746
- PluginChartOptions < TType > &
3747
- DatasetChartOptions < TType > &
3748
- ScaleChartOptions < TType > &
3749
- ChartTypeRegistry [ TType ] [ 'chartOptions' ]
3743
+ export type ChartOptions < TType extends ChartType = ChartType > = Exclude <
3744
+ DeepPartial <
3745
+ CoreChartOptions < TType > &
3746
+ ElementChartOptions < TType > &
3747
+ PluginChartOptions < TType > &
3748
+ DatasetChartOptions < TType > &
3749
+ ScaleChartOptions < TType > &
3750
+ ChartTypeRegistry [ TType ] [ 'chartOptions' ]
3751
+ > ,
3752
+ DeepPartial < unknown [ ] >
3750
3753
> ;
3751
3754
3752
3755
export type DefaultDataPoint < TType extends ChartType > = DistributiveArray < ChartTypeRegistry [ TType ] [ 'defaultDataPoint' ] > ;
You can’t perform that action at this time.
0 commit comments