diff --git a/types/index.d.ts b/types/index.d.ts index 4304319fd..83cc9c054 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -1093,6 +1093,11 @@ export interface Plugin exte * @since 3.0.0 */ uninstall?(chart: Chart, args: EmptyObject, options: O): void; + + /** + * Default options used in the plugin + */ + defaults?: Partial; } export declare type ChartComponentLike = ChartComponent | ChartComponent[] | { [key: string]: ChartComponent } | Plugin | Plugin[];