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 3aa92c2 commit 001bc97Copy full SHA for 001bc97
types/index.esm.d.ts
@@ -1844,7 +1844,7 @@ export interface ElementOptionsByType {
1844
point: PointOptions & PointHoverOptions;
1845
}
1846
export interface ElementChartOptions {
1847
- elements: { [k in keyof ElementOptionsByType]: ElementOptionsByType[k]; };
+ elements: Partial<ElementOptionsByType>;
1848
1849
1850
export class BasePlatform {
@@ -2483,7 +2483,7 @@ export interface PluginOptionsByType {
2483
tooltip: TooltipOptions;
2484
2485
export interface PluginChartOptions {
2486
- plugins: { [k in keyof PluginOptionsByType]: PluginOptionsByType[k]; };
+ plugins: Partial<PluginOptionsByType>;
2487
2488
2489
export interface GridLineOptions {
0 commit comments