import { Globals } from "./index"; /** * The **`list-style-position`** CSS property sets the position of the `::marker` relative to a list item. * * **Initial value**: `outside` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :---: | * | **1** | **1** | **1** | **12** | **4** | * * @see https://developer.mozilla.org/docs/Web/CSS/list-style-position */ export type ListStylePositionProperty = Globals | "inside" | "outside";