(lView: LView)
| 252 | * Retrieves the list of specified enter animations from the lView |
| 253 | */ |
| 254 | export function getLViewEnterAnimations(lView: LView): Map<number, EnterNodeAnimations> { |
| 255 | const animationData = (lView[ANIMATIONS] ??= {}); |
| 256 | return (animationData.enter ??= new Map()); |
| 257 | } |
| 258 | |
| 259 | /** |
| 260 | * Retrieves the list of specified leave animations from the lView |
no outgoing calls
no test coverage detected
searching dependent graphs…