import { Globals, StringHack } from "./index"; /** * The **`font-feature-settings`** CSS property controls advanced typographic features in OpenType fonts. * * **Initial value**: `normal` * * | Chrome | Firefox | Safari | Edge | IE | * | :------: | :------: | :-----: | :----: | :----: | * | **48** | **34** | **9.1** | **15** | **10** | * | 16 _-x-_ | 15 _-x-_ | | | | * * @see https://developer.mozilla.org/docs/Web/CSS/font-feature-settings */ export type FontFeatureSettingsProperty = Globals | "normal" | StringHack;