()
| 169 | return domRef.current?.pendingScrollDelta ?? 0; |
| 170 | }, |
| 171 | getScrollHeight() { |
| 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; |
nothing calls this directly
no outgoing calls
no test coverage detected