Files
Housekeeping-web-admin/node_modules/@radix-ui/react-use-rect/dist/index.d.ts
T
2026-06-24 09:48:54 +02:00

10 lines
266 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): DOMRect | undefined;
export { useRect };