( lView: LView, tNode: TNode, nativeElement: HTMLElement, resolvers: VoidFunction[] | undefined, cleanupFns: VoidFunction[], )
| 379 | } |
| 380 | |
| 381 | export function leaveAnimationFunctionCleanup( |
| 382 | lView: LView, |
| 383 | tNode: TNode, |
| 384 | nativeElement: HTMLElement, |
| 385 | resolvers: VoidFunction[] | undefined, |
| 386 | cleanupFns: VoidFunction[], |
| 387 | ) { |
| 388 | clearLeavingNodes(tNode, nativeElement as HTMLElement); |
| 389 | cleanupAfterLeaveAnimations(resolvers, cleanupFns); |
| 390 | clearLViewNodeAnimationResolvers(lView, tNode); |
| 391 | } |
no test coverage detected
searching dependent graphs…