import { Globals, StringHack } from "./index"; /** * The **`font-variant-numeric`** CSS property controls the usage of alternate glyphs for numbers, fractions, and ordinal markers. * * **Initial value**: `normal` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :-----: | :--: | :-: | * | **52** | **34** | **9.1** | No | No | * * @see https://developer.mozilla.org/docs/Web/CSS/font-variant-numeric */ export type FontVariantNumericProperty = | Globals | "diagonal-fractions" | "lining-nums" | "normal" | "oldstyle-nums" | "ordinal" | "proportional-nums" | "slashed-zero" | "stacked-fractions" | "tabular-nums" | StringHack;