import { Globals, StringHack } from "./index"; /** * The **`transition-delay`** CSS property specifies the duration to wait before starting a property's transition effect when its value changes. * * **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-delay */ export type TransitionDelayProperty = Globals | StringHack;