From: Jacco van den Berg Date: Thu, 18 Aug 2022 11:33:42 +0000 (+0200) Subject: Allow animations to be set to false for the tooltip (#10582) X-Git-Tag: v4.0.0~55 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=dad1e98c5a0de04b00c7dd6b40c536a5682196a1;p=thirdparty%2FChart.js.git Allow animations to be set to false for the tooltip (#10582) --- diff --git a/types/index.d.ts b/types/index.d.ts index 6f3eb79b3..566b12790 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -2755,8 +2755,8 @@ export interface TooltipOptions extends Cor */ textDirection: Scriptable>; - animation: AnimationSpec; - animations: AnimationsSpec; + animation: AnimationSpec | false; + animations: AnimationsSpec | false; callbacks: TooltipCallbacks; }