(lView: LView)
| 260 | * Retrieves the list of specified leave animations from the lView |
| 261 | */ |
| 262 | export function getLViewLeaveAnimations(lView: LView): Map<number, LeaveNodeAnimations> { |
| 263 | const animationData = (lView[ANIMATIONS] ??= {}); |
| 264 | return (animationData.leave ??= new Map()); |
| 265 | } |
| 266 | |
| 267 | /** |
| 268 | * Gets the list of classes from a passed in value |
no outgoing calls
no test coverage detected
searching dependent graphs…