import { Globals, StringHack } from "./index"; /** * The **`text-decoration-line`** CSS property sets the kind of decoration that is used on text in an element, such as an underline or overline. * * **Initial value**: `none` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :--: | :-: | * | Yes | **36** | Yes | n/a | No | * * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-line */ export type TextDecorationLineProperty = Globals | "blink" | "line-through" | "none" | "overline" | "underline" | StringHack;