import { Globals } from "./index"; /** * The **`text-rendering`** CSS property provides information to the rendering engine about what to optimize for when rendering text. * * **Initial value**: `auto` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :--: | :-: | * | **4** | **1** | **5** | n/a | No | * * @see https://developer.mozilla.org/docs/Web/CSS/text-rendering */ export type TextRenderingProperty = Globals | "auto" | "geometricPrecision" | "optimizeLegibility" | "optimizeSpeed";