UNPKG

@ui5/webcomponents-react

Version:

React Wrapper for UI5 Web Components and additional components

8 lines (7 loc) 334 B
import type { Dispatch, RefObject, SetStateAction, UIEventHandler } from 'react'; interface UseOnScrollEndProps { objectPageRef: RefObject<HTMLDivElement>; setTabSelectId: Dispatch<SetStateAction<string | null>>; } export declare function useOnScrollEnd(props: UseOnScrollEndProps): UIEventHandler<HTMLDivElement>; export {};