import { Globals } from "./index"; /** * The **`widows`** CSS property sets the minimum number of lines in a block container that must be shown at the _top_ of a page, region, or column. * * **Initial value**: `2` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :---: | * | **25** | No | No | **12** | **8** | * * @see https://developer.mozilla.org/docs/Web/CSS/widows */ export type WidowsProperty = Globals | number;