import { Globals, SingleAnimationDirection, StringHack } from "./index"; /** * The **`animation-direction`** CSS property sets whether an animation should play forwards, backwards, or alternating back and forth. * * **Initial value**: `normal` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :---------: | :----: | :----: | * | **43** | **16** | **4** _-x-_ | **12** | **10** | * | | 5 _-x-_ | | | | * * @see https://developer.mozilla.org/docs/Web/CSS/animation-direction */ export type AnimationDirectionProperty = Globals | SingleAnimationDirection | StringHack;