import { Globals } from "./index"; /** * The **`line-break`** CSS property sets how to break lines of Chinese, Japanese, or Korean (CJK) text when working with punctuation and symbols. * * **Initial value**: `auto` * * | Chrome | Firefox | Safari | Edge | IE | * | :-----: | :-----: | :----: | :----: | :-----: | * | **58** | No | Yes | **14** | **5.5** | * | 1 _-x-_ | | | | | * * @see https://developer.mozilla.org/docs/Web/CSS/line-break */ export type LineBreakProperty = Globals | "auto" | "loose" | "normal" | "strict";