()
| 172 | return domRef.current?.scrollHeight ?? 0; |
| 173 | }, |
| 174 | getFreshScrollHeight() { |
| 175 | const content = domRef.current?.childNodes[0] as DOMElement | undefined; |
| 176 | return content?.yogaNode?.getComputedHeight() ?? domRef.current?.scrollHeight ?? 0; |
| 177 | }, |
| 178 | getViewportHeight() { |
| 179 | return domRef.current?.scrollViewportHeight ?? 0; |
| 180 | }, |
nothing calls this directly
no test coverage detected