(item: T, index: number, count: number)
| 74 | } |
| 75 | |
| 76 | function insertView(item: T, index: number, count: number): void { |
| 77 | createEmbeddedView( |
| 78 | viewContainerRef, |
| 79 | initialTemplateRef, |
| 80 | createViewContext(item, { |
| 81 | count, |
| 82 | index, |
| 83 | }), |
| 84 | index |
| 85 | ); |
| 86 | } |
| 87 | } |
| 88 | |
| 89 | /** |
nothing calls this directly
no test coverage detected