import { Globals, StringHack } from "./index"; /** * The **`transition-duration`** CSS property sets the length of time a transition animation should take to complete. By default, the value is `0s`, meaning that no animation will occur. * * **Initial value**: `0s` * * | Chrome | Firefox | Safari | Edge | IE | * | :-----: | :-----: | :---------: | :----: | :----: | * | **26** | **16** | **3** _-x-_ | **12** | **10** | * | 1 _-x-_ | 4 _-x-_ | | | | * * @see https://developer.mozilla.org/docs/Web/CSS/transition-duration */ export type TransitionDurationProperty = Globals | StringHack;