( lView: LView, tNode: TNode, nativeElement: HTMLElement, resolvers: VoidFunction[] | undefined, cleanupFns: VoidFunction[], )
| 409 | } |
| 410 | |
| 411 | export function leaveAnimationFunctionCleanup( |
| 412 | lView: LView, |
| 413 | tNode: TNode, |
| 414 | nativeElement: HTMLElement, |
| 415 | resolvers: VoidFunction[] | undefined, |
| 416 | cleanupFns: VoidFunction[], |
| 417 | ) { |
| 418 | clearLeavingNodes(tNode, nativeElement as HTMLElement); |
| 419 | cleanupAfterLeaveAnimations(resolvers, cleanupFns); |
| 420 | clearLViewNodeAnimationResolvers(lView, tNode); |
| 421 | } |
no test coverage detected