import { Globals, FontStretchAbsolute } from "./index"; /** * The **`font-stretch`** CSS property selects a normal, condensed, or expanded face from a font. * * **Initial value**: `normal` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :---: | * | **60** | **9** | **11** | **12** | **9** | * * @see https://developer.mozilla.org/docs/Web/CSS/font-stretch */ export type FontStretchProperty = Globals | FontStretchAbsolute;