(deep = false, toggleAnimationName = true, step?: number)
| 688 | }; |
| 689 | |
| 690 | const update = (deep = false, toggleAnimationName = true, step?: number) => { |
| 691 | if (deep) { |
| 692 | childAnimations.forEach((animation) => { |
| 693 | animation.update(deep, toggleAnimationName, step); |
| 694 | }); |
| 695 | } |
| 696 | |
| 697 | if (supportsWebAnimations) { |
| 698 | updateWebAnimation(step); |
| 699 | } |
| 700 | |
| 701 | return ani; |
| 702 | }; |
| 703 | |
| 704 | const progressStart = (forceLinearEasing = false, step?: number) => { |
| 705 | childAnimations.forEach((animation) => { |
no test coverage detected