blob: 9086ea3b98a6b5e6bfde7bc9b17d2e8d442be114 [file] [log] [blame] [edit]
/**
* Returns the height of a given element.
*
* @param node the element
* @param client whether to use `clientHeight` if possible
*/
export default function height(node: HTMLElement, client?: boolean): number;