import { Globals } from "./index"; /** * The **`text-decoration-style`** CSS property sets the style of the lines specified by `text-decoration-line`. The style applies to all lines that are set with `text-decoration-line`. * * **Initial value**: `solid` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :--: | :-: | * | **57** | **36** | Yes | No | No | * * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-style */ export type TextDecorationStyleProperty = Globals | "dashed" | "dotted" | "double" | "solid" | "wavy";