update animation event to include currentStep instead of currentState (#9837)

This commit is contained in:
NorthBlue333 2021-11-11 17:54:17 +01:00 committed by GitHub
parent 359d171683
commit 7da77a560e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,7 +13,7 @@ export interface AnimationEvent {
chart: Chart;
numSteps: number;
initial: boolean;
currentState: number;
currentStep: number;
}
export class Animator {