import { Globals } from "./index"; /** * The **`page-break-inside`** CSS property adjusts page breaks _inside_ the current element. * * **Initial value**: `auto` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :-----: | :----: | :---: | * | **1** | **19** | **1.3** | **12** | **8** | * * @see https://developer.mozilla.org/docs/Web/CSS/page-break-inside */ export type PageBreakInsideProperty = Globals | "auto" | "avoid";