import { Globals, StringHack } from "./index"; /** * The **`font-style`** CSS property sets whether a font should be styled with a normal, italic, or oblique face from its `font-family`. * * **Initial value**: `normal` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :---: | * | **1** | **1** | **1** | **12** | **4** | * * @see https://developer.mozilla.org/docs/Web/CSS/font-style */ export type FontStyleProperty = Globals | "italic" | "normal" | "oblique" | StringHack;