import { Globals, Color, StringHack } from "./index"; /** * The **`text-emphasis`** CSS property applies emphasis marks to text (except spaces and control characters). It is a shorthand for `text-emphasis-style` and `text-emphasis-color`. * * | Chrome | Firefox | Safari | Edge | IE | * | :----------: | :-----: | :-----------: | :--: | :-: | * | **25** _-x-_ | **46** | **6.1** _-x-_ | n/a | No | * * @see https://developer.mozilla.org/docs/Web/CSS/text-emphasis */ export type TextEmphasisProperty = Globals | Color | "circle" | "dot" | "double-circle" | "filled" | "none" | "open" | "sesame" | "triangle" | StringHack;