import { Globals, StringHack } from "./index"; /** * The **`counter-reset`** CSS property resets a CSS counter to a given value. * * **Initial value**: `none` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :-----: | :----: | :---: | * | **2** | **1** | **3.1** | **12** | **8** | * * @see https://developer.mozilla.org/docs/Web/CSS/counter-reset */ export type CounterResetProperty = Globals | "none" | StringHack;