import { StringHack, Globals } from "./index"; /** * The **`text-indent`** CSS property sets the length of empty space (indentation) that is put before lines of text in a block. * * **Initial value**: `0` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :---: | * | **1** | **1** | **1** | **12** | **3** | * * @see https://developer.mozilla.org/docs/Web/CSS/text-indent */ export type TextIndentProperty = Globals | TLength | StringHack;