This repository has been archived on 2025-07-07. You can view files and clone it, but cannot push or open issues or pull requests.
Files
eternos/frontend/style/node_modules/@radix-ui/react-use-rect/dist/index.d.mts
2025-01-11 09:54:09 +03:00

10 lines
269 B
TypeScript

import { Measurable } from '@radix-ui/rect';
/**
* Use this custom hook to get access to an element's rect (getBoundingClientRect)
* and observe it along time.
*/
declare function useRect(measurable: Measurable | null): ClientRect | undefined;
export { useRect };