Interface IntersectionObserverInit

    interface IntersectionObserverInit {
        root?: Element | Document;
        rootMargin?: string;
        threshold?: number | number[];
    }

    Properties

    root?: Element | Document
    rootMargin?: string
    threshold?: number | number[]