UNPKG

@eleven-am/xquery

Version:

XQuery is a sophisticated TypeScript wrapper for TanStack React Query, designed to enhance developer productivity with OpenAPI-generated clients. It enables developers to build and execute queries using fully type-safe factories instead of managing query

9 lines (8 loc) 324 B
interface UseIsVisibleOptions { action?: () => void; triggerOnce?: boolean; options?: IntersectionObserverInit; } type UseIsVisibleReturn = [(node: HTMLElement | null) => void, boolean]; export declare function useIsVisible({ action, options, triggerOnce }?: UseIsVisibleOptions): UseIsVisibleReturn; export {};