5 lines
285 B
TypeScript
5 lines
285 B
TypeScript
export declare function useIntersectionObserver(callback?: IntersectionObserverCallback, options?: IntersectionObserverInit): {
|
|
intersectionRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
isIntersecting: import("vue").ShallowRef<boolean, boolean>;
|
|
};
|