( lContainer: LContainer, index: number, )
| 126 | } |
| 127 | |
| 128 | export function removeLViewFromLContainer( |
| 129 | lContainer: LContainer, |
| 130 | index: number, |
| 131 | ): LView<unknown> | undefined { |
| 132 | const lView = detachView(lContainer, index); |
| 133 | if (lView !== undefined) { |
| 134 | destroyLView(lView[TVIEW], lView); |
| 135 | } |
| 136 | return lView; |
| 137 | } |
| 138 | |
| 139 | /** |
| 140 | * Detaches a view from a container. |
no test coverage detected
searching dependent graphs…