(step: number)
| 718 | }; |
| 719 | |
| 720 | const progressStep = (step: number) => { |
| 721 | childAnimations.forEach((animation) => { |
| 722 | animation.progressStep(step); |
| 723 | }); |
| 724 | setAnimationStep(step); |
| 725 | return ani; |
| 726 | }; |
| 727 | |
| 728 | const progressEnd = (playTo: 0 | 1 | undefined, step: number, dur?: number) => { |
| 729 | shouldForceLinearEasing = false; |
nothing calls this directly
no test coverage detected