UNPKG

@procore/core-react

Version:
8 lines (7 loc) 289 B
export interface Rect extends Omit<DOMRect, 'x' | 'y' | 'toJSON'> { x?: number; y?: number; } export declare const defaultRect: Rect; export declare function getCrossbrowserBoundingRect(rect: Rect | DOMRect): Rect; export declare function getBoundingRect(node: HTMLElement): Rect;