| 4 | } from "react"; |
| 5 | |
| 6 | interface UseObserver { |
| 7 | ( |
| 8 | callback: IntersectionObserverCallback, |
| 9 | options?: IntersectionObserverInit, |
| 10 | externalState?: React.ComponentState[] |
| 11 | ): (node: Element | null) => void |
| 12 | } |
| 13 | |
| 14 | /** |
| 15 | * useObserver |
nothing calls this directly
no outgoing calls
no test coverage detected