import { Globals } from "./index"; /** * The **`font-optical-sizing`** CSS property sets whether text rendering is optimized for viewing at different sizes. This only works for fonts that have an optical size variation axis. * * **Initial value**: `auto` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :--: | :-: | * | n/a | **62** | n/a | n/a | No | * * @see https://developer.mozilla.org/docs/Web/CSS/font-optical-sizing */ export type FontOpticalSizingProperty = Globals | "auto" | "none";