import { Globals, SingleTimingFunction, StringHack } from "./index"; /** * The `**animation-timing-function**` CSS property sets how an animation progresses through the duration of each cycle. * * **Initial value**: `ease` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :---------: | :----: | :----: | * | **43** | **16** | **4** _-x-_ | **12** | **10** | * | | 5 _-x-_ | | | | * * @see https://developer.mozilla.org/docs/Web/CSS/animation-timing-function */ export type AnimationTimingFunctionProperty = Globals | SingleTimingFunction | StringHack;