import { StringHack, Globals } from "./index"; /** * The **`line-height-step`** CSS property sets the step unit for line box heights. When the property is set, line box heights are rounded up to the closest multiple of the unit. * * **Initial value**: `0` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :--: | :-: | * | n/a | n/a | n/a | n/a | n/a | * * @see https://developer.mozilla.org/docs/Web/CSS/line-height-step */ export type LineHeightStepProperty = Globals | TLength;