import { Globals, StringHack } from "./index"; /** * The **`animation-iteration-count`** CSS property sets the number of times an animation cycle should be played before stopping. * * **Initial value**: `1` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :---------: | :----: | :----: | * | **43** | **16** | **4** _-x-_ | **12** | **10** | * | | 5 _-x-_ | | | | * * @see https://developer.mozilla.org/docs/Web/CSS/animation-iteration-count */ export type AnimationIterationCountProperty = Globals | "infinite" | StringHack | number;