(forceLinearEasing = false, step?: number)
| 702 | }; |
| 703 | |
| 704 | const progressStart = (forceLinearEasing = false, step?: number) => { |
| 705 | childAnimations.forEach((animation) => { |
| 706 | animation.progressStart(forceLinearEasing, step); |
| 707 | }); |
| 708 | |
| 709 | pauseAnimation(); |
| 710 | shouldForceLinearEasing = forceLinearEasing; |
| 711 | |
| 712 | if (!initialized) { |
| 713 | initializeAnimation(); |
| 714 | } |
| 715 | update(false, true, step); |
| 716 | |
| 717 | return ani; |
| 718 | }; |
| 719 | |
| 720 | const progressStep = (step: number) => { |
| 721 | childAnimations.forEach((animation) => { |
nothing calls this directly
no test coverage detected