import { Globals } from "./index"; /** * The **`-ms-block-progression`** CSS property is a Microsoft extension that specifies the block progression and layout orientation. * * **Initial value**: `tb` */ export type MsBlockProgressionProperty = Globals | "bt" | "lr" | "rl" | "tb";