import { Globals, StringHack } from "./index"; /** * The **`counter-increment`** CSS property increases or decreases the value of a CSS counter by a given value. * * **Initial value**: `none` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :--: | :---: | * | **2** | **1** | **3** | n/a | **8** | * * @see https://developer.mozilla.org/docs/Web/CSS/counter-increment */ export type CounterIncrementProperty = Globals | "none" | StringHack;