line-height.d.ts 264 B

123456
  1. /**
  2. * Calculate the `line-height` of a given node
  3. * @param {HTMLElement} node Element to calculate line height of. Must be in the DOM.
  4. * @returns {Number} `line-height` of the element in pixels
  5. */
  6. export default function lineHeight(node: HTMLElement): number;