ngx-intersection-observer
Version:
Intersection observer for Angular
11 lines (10 loc) • 421 B
TypeScript
export declare class IntersectionObserverConfig {
/** Debounces the intersection check. */
debounce: number;
/** Specifies how many precentage of the element need to be visible to treat it as intersection. */
threshold: number;
/** Automatically remove classes from the element. */
autoRemove: boolean;
/** Scroll Listener, false = IntersectionObserver */
useScroll: boolean;
}