import { Globals, StringHack } from "./index"; /** * The **`animation-play-state`** CSS property sets whether an animation is running or paused. * * **Initial value**: `running` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :----: | * | **43** | **16** | Yes | **12** | **10** | * | | 5 _-x-_ | | | | * * @see https://developer.mozilla.org/docs/Web/CSS/animation-play-state */ export type AnimationPlayStateProperty = Globals | "paused" | "running" | StringHack;