@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.
21 lines (17 loc) • 404 B
TypeScript
// @flow
type 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 };