import { Globals } from "./index"; /** * The **`text-justify`** CSS property sets what type of justification should be applied to text when `text-align``: justify;` is set on an element. * * **Initial value**: `auto` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :----: | * | n/a | **55** | No | **14** | **11** | * * @see https://developer.mozilla.org/docs/Web/CSS/text-justify */ export type TextJustifyProperty = Globals | "auto" | "inter-character" | "inter-word" | "none";