Interface IInViewMutableProps

Mutable properties for managing the state of the InView module.

interface IInViewMutableProps {
    __mutableProp?: null;
    enabled?: boolean;
    rootMargin?: string;
}

Hierarchy (View Summary)

Properties

__mutableProp?: null
enabled?: boolean

Enables or disables the IntersectionObserver instance.

true
rootMargin?: string

Specifies the root margin offsets for the IntersectionObserver, allowing fine-tuned visibility detection.

'0% 0% -5% 0%'