import { Globals, SingleTransition, StringHack } from "./index"; /** * The **`transition`** CSS property is a shorthand property for `transition-property`, `transition-duration`, `transition-timing-function`, and `transition-delay`. * * | Chrome | Firefox | Safari | Edge | IE | * | :-----: | :-----: | :-----: | :----: | :----: | * | **26** | **16** | **6.1** | **12** | **10** | * | 1 _-x-_ | 4 _-x-_ | 3 _-x-_ | | | * * @see https://developer.mozilla.org/docs/Web/CSS/transition */ export type TransitionProperty = Globals | SingleTransition | StringHack;