UNPKG

alinea

Version:

[![npm](https://img.shields.io/npm/v/alinea.svg)](https://npmjs.org/package/alinea) [![install size](https://packagephobia.com/badge?p=alinea)](https://packagephobia.com/result?p=alinea)

9 lines (8 loc) 266 B
import { RefObject } from 'react'; export type AutoHideOptions = { scrollRef?: RefObject<HTMLElement>; addToHeight?: number; }; export declare const useAutoHide: <E extends HTMLElement = HTMLElement>(options?: AutoHideOptions) => { ref: RefObject<E>; };