From 7da77a560e7ede5f897761c42f660c89f2ef812e Mon Sep 17 00:00:00 2001 From: NorthBlue333 <43409865+NorthBlue333@users.noreply.github.com> Date: Thu, 11 Nov 2021 17:54:17 +0100 Subject: [PATCH] update animation event to include currentStep instead of currentState (#9837) --- types/animation.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 { -- 2.47.2