UNPKG

@kiwicom/orbit-components

Version:

Orbit-components is a React component library which provides developers with the easiest possible way of building Kiwi.com’s products.

19 lines (16 loc) 404 B
export interface Dimensions { top: number; right: number; bottom: number; left: number; height: number; width: number; pureTop: number; pureLeft: number; pureRight: number; pureBottom: number; } declare const BoundingClientRect: ( ref?: { current: HTMLElement } | null | undefined, ) => Dimensions | null | undefined; export { BoundingClientRect, BoundingClientRect as default };