import { Globals, StringHack } from "./index"; /** * The **`font-synthesis`** CSS property controls which missing typefaces, bold or italic, may be synthesized by the browser. * * **Initial value**: `weight style` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :--: | :-: | * | No | **34** | **9** | No | No | * * @see https://developer.mozilla.org/docs/Web/CSS/font-synthesis */ export type FontSynthesisProperty = Globals | "none" | "style" | "weight" | StringHack;