(injector: Injector)
| 104 | } |
| 105 | |
| 106 | export function initializeAnimationQueueScheduler(injector: Injector) { |
| 107 | const animationQueue = injector.get(ANIMATION_QUEUE); |
| 108 | animationQueue.scheduler = scheduleAnimationQueue; |
| 109 | animationQueue.scheduler(injector); |
| 110 | } |
| 111 | |
| 112 | export function queueEnterAnimations( |
| 113 | injector: Injector, |
no test coverage detected
searching dependent graphs…