UNPKG

c-react-hooks

Version:
12 lines (11 loc) 359 B
import { MutableRefObject } from "react"; export type UseModalMaxHeightProps = { extraHeight?: number; wrapperRef: MutableRefObject<HTMLDivElement | null>; targetClassName?: string; position?: "top" | "bottom"; }; export declare const useModalMaxHeight: (props: UseModalMaxHeightProps) => { maxHeight: any; setRefreshComputed: any; };