()
| 153 | * menu is currently animating. |
| 154 | */ |
| 155 | const isAnimating = async (): Promise<boolean> => { |
| 156 | await waitUntilReady(); |
| 157 | return isAnimatingSync(); |
| 158 | }; |
| 159 | |
| 160 | const registerAnimation = (name: string, animation: AnimationBuilder) => { |
| 161 | menuAnimations.set(name, animation); |
nothing calls this directly
no test coverage detected