import { Globals, StringHack } from "./index"; /** * The **`offset-rotate`** CSS property defines the direction of the element while positioning along the offset path. * * **Initial value**: `auto` * * | Chrome | Firefox | Safari | Edge | IE | * | :--------------------: | :-----: | :----: | :--: | :-: | * | **56** | n/a | n/a | n/a | n/a | * | 46 _(motion-rotation)_ | | | | | * * @see https://developer.mozilla.org/docs/Web/CSS/offset-rotate */ export type OffsetRotateProperty = Globals | "auto" | "reverse" | StringHack;