From: NorthBlue333 <43409865+NorthBlue333@users.noreply.github.com> Date: Thu, 11 Nov 2021 16:54:17 +0000 (+0100) Subject: update animation event to include currentStep instead of currentState (#9837) X-Git-Tag: v3.6.1~20 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7da77a560e7ede5f897761c42f660c89f2ef812e;p=thirdparty%2FChart.js.git update animation event to include currentStep instead of currentState (#9837) --- diff --git a/types/animation.d.ts b/types/animation.d.ts index 593b745d9..07d3bb37c 100644 --- a/types/animation.d.ts +++ b/types/animation.d.ts @@ -13,7 +13,7 @@ export interface AnimationEvent { chart: Chart; numSteps: number; initial: boolean; - currentState: number; + currentStep: number; } export class Animator {