UNPKG

@acrool/react-hooks

Version:

Common javascript utils methods for project development

13 lines (12 loc) 312 B
export interface IPosition { vertical: 'top' | 'bottom'; horizontal: 'left' | 'right'; } /** * 取得項目適合顯示的位置 */ declare const usePosition: () => { positionRef: import('react').RefObject<HTMLDivElement | null>; position: IPosition | undefined; }; export default usePosition;