| 20 | ) => void; |
| 21 | |
| 22 | interface RenderProps { |
| 23 | inView: boolean; |
| 24 | entry: IntersectionObserverEntry | undefined; |
| 25 | // biome-ignore lint/suspicious/noExplicitAny: Ref could be anything |
| 26 | ref: React.RefObject<any> | ((node?: Element | null) => void); |
| 27 | } |
| 28 | |
| 29 | export interface IntersectionOptions extends IntersectionObserverInit { |
| 30 | /** The IntersectionObserver interface's read-only `root` property identifies the Element or Document whose bounds are treated as the bounding box of the viewport for the element which is the observer's target. If the `root` is null, then the bounds of the actual document viewport are used.*/ |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…