* Get the height of an item (measured or estimated)
(index: number)
| 249 | * Get the height of an item (measured or estimated) |
| 250 | */ |
| 251 | private getItemHeight(index: number): number { |
| 252 | return this.itemHeights.get(index) ?? this.estimatedHeight; |
| 253 | } |
| 254 | |
| 255 | /** |
| 256 | * Get the position (top offset) of an item |
no test coverage detected