import { Globals } from "./index"; /** * The **`font-size-adjust`** CSS property sets how the font size should be chosen based on the height of lowercase rather than capital letters. * * **Initial value**: `none` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :--: | :-: | * | n/a | **1** | No | No | No | * * @see https://developer.mozilla.org/docs/Web/CSS/font-size-adjust */ export type FontSizeAdjustProperty = Globals | "none" | number;