import { Globals, SingleAnimationFillMode, StringHack } from "./index"; /** * The **`animation-fill-mode`** CSS property sets how a CSS animation applies styles to its target before and after its execution. * * **Initial value**: `none` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :---------: | :----: | :----: | * | **43** | **16** | **4** _-x-_ | **12** | **10** | * | | 5 _-x-_ | | | | * * @see https://developer.mozilla.org/docs/Web/CSS/animation-fill-mode */ export type AnimationFillModeProperty = Globals | SingleAnimationFillMode | StringHack;