import { Globals, EastAsianVariantValues, StringHack } from "./index"; /** * The **`font-variant-east-asian`** CSS property controls the use of alternate glyphs for East Asian scripts, like Japanese and Chinese. * * **Initial value**: `normal` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :--: | :-: | * | **63** | **34** | No | No | No | * * @see https://developer.mozilla.org/docs/Web/CSS/font-variant-east-asian */ export type FontVariantEastAsianProperty = Globals | EastAsianVariantValues | "full-width" | "normal" | "proportional-width" | "ruby" | StringHack;