import { Globals } from "./index"; /** * The **`text-decoration-skip-ink`** CSS property specifies how overlines and underlines are drawn when they pass over glyph ascenders and descenders. * * **Initial value**: `auto` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :--: | :-: | * | **64** | No | No | No | No | * * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-skip-ink */ export type TextDecorationSkipInkProperty = Globals | "auto" | "none";