import { Globals, StringHack } from "./index"; /** * The **`text-emphasis-style`** CSS property sets the appearance of emphasis marks. It can also be set, and reset, using the `text-emphasis` shorthand. * * **Initial value**: `none` * * | Chrome | Firefox | Safari | Edge | IE | * | :----------: | :-----: | :-----------: | :--: | :-: | * | **25** _-x-_ | **46** | **6.1** _-x-_ | n/a | No | * * @see https://developer.mozilla.org/docs/Web/CSS/text-emphasis-style */ export type TextEmphasisStyleProperty = Globals | "circle" | "dot" | "double-circle" | "filled" | "none" | "open" | "sesame" | "triangle" | StringHack;