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