UNPKG

ngx-intersection-observer

Version:
8 lines (7 loc) 248 B
import { ElementRef } from "@angular/core"; export interface IntersectionObserverEvent { /** True if the element is intersecting, otherwhise fals */ intersect: boolean; /** Intersecting element */ element: ElementRef<any>; }