import { Globals, GenericFamily, StringHack } from "./index"; /** * The **`font-family`** CSS property specifies a prioritized list of one or more font family names and/or generic family names for the selected element. * * **Initial value**: depends on user agent * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :---: | * | **1** | **1** | **1** | **12** | **3** | * * @see https://developer.mozilla.org/docs/Web/CSS/font-family */ export type FontFamilyProperty = Globals | GenericFamily | StringHack;