( injector: Injector, enterAnimations: Map<number, EnterNodeAnimations>, )
| 110 | } |
| 111 | |
| 112 | export function queueEnterAnimations( |
| 113 | injector: Injector, |
| 114 | enterAnimations: Map<number, EnterNodeAnimations>, |
| 115 | ) { |
| 116 | for (const [_, nodeAnimations] of enterAnimations) { |
| 117 | addToAnimationQueue(injector, nodeAnimations.animateFns); |
| 118 | } |
| 119 | } |
no test coverage detected
searching dependent graphs…