| 7 | import useObserver from "./useObserver"; |
| 8 | |
| 9 | interface State { |
| 10 | inView: boolean |
| 11 | entry: IntersectionObserverEntry | null |
| 12 | observer: IntersectionObserver | null |
| 13 | } |
| 14 | |
| 15 | export interface Options extends IntersectionObserverInit { |
| 16 | unobserveOnEnter?: boolean |
nothing calls this directly
no outgoing calls
no test coverage detected