ohctechv3/.svn/pristine/8c/8c2107a77ddd7fa83cdb16266e0e9b3330066d17.svn-base
2024-10-28 15:03:36 +05:30

8 lines
216 B
Plaintext

/**
* Returns the width of a given element.
*
* @param node the element
* @param client whether to use `clientWidth` if possible
*/
export default function getWidth(node: HTMLElement, client?: boolean): number;