Type Alias AnimationLoop

AnimationLoop: {
    onEnd?: (() => void);
    onEveryStep?: (() => void);
    steps: AnimationStep[];
}