import { Globals } from "./index"; /** * The **`writing-mode`** CSS property sets whether lines of text are laid out horizontally or vertically, as well as the direction in which blocks progress. * * **Initial value**: `horizontal-tb` * * | Chrome | Firefox | Safari | Edge | IE | * | :---------: | :-----: | :-----------: | :----: | :---------: | * | **8** _-x-_ | **41** | **5.1** _-x-_ | **12** | **9** _-x-_ | * * @see https://developer.mozilla.org/docs/Web/CSS/writing-mode */ export type WritingModeProperty = Globals | "horizontal-tb" | "sideways-lr" | "sideways-rl" | "vertical-lr" | "vertical-rl";