import { StringHack, Globals } from "./index"; /** * The **`word-spacing`** CSS property sets the length of space between words and between tags. * * **Initial value**: `normal` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :---: | * | **1** | **1** | **1** | **12** | **6** | * * @see https://developer.mozilla.org/docs/Web/CSS/word-spacing */ export type WordSpacingProperty = Globals | TLength | "normal" | StringHack;