UNPKG

c-react-hooks

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