| 52 | `, |
| 53 | }) |
| 54 | export class AppComponent { |
| 55 | scrollElement = viewChild<ElementRef<HTMLDivElement>>('scrollElement') |
| 56 | |
| 57 | virtualizer = injectWindowVirtualizer(() => ({ |
| 58 | count: 10000, |
| 59 | estimateSize: () => 35, |
| 60 | overscan: 5, |
| 61 | scrollMargin: this.scrollElement()?.nativeElement.offsetTop, |
| 62 | })) |
| 63 | } |
nothing calls this directly
no test coverage detected