import { Globals, SingleTimingFunction, StringHack } from "./index"; /** * The **`transition-timing-function`** CSS property sets how intermediate values are calculated for CSS properties being affected by a transition effect. * * **Initial value**: `ease` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :----: | * | **26** | **16** | Yes | **12** | **10** | * | | 4 _-x-_ | | | | * * @see https://developer.mozilla.org/docs/Web/CSS/transition-timing-function */ export type TransitionTimingFunctionProperty = Globals | SingleTimingFunction | StringHack;