(callback: () => void)
| 85 | } |
| 86 | |
| 87 | override onDestroy(callback: () => void): () => void { |
| 88 | const lView = this._lView; |
| 89 | |
| 90 | storeLViewOnDestroy(lView, callback); |
| 91 | return () => removeLViewOnDestroy(lView, callback); |
| 92 | } |
| 93 | } |
| 94 | |
| 95 | function injectDestroyRef(): DestroyRef { |
nothing calls this directly
no test coverage detected