import { Globals, StringHack } from "./index"; /** * The **`image-orientation`** CSS property specifies a layout-independent correction to the orientation of an image. It should _not_ be used for any other orientation adjustments; instead, the `transform` property should be used with the `rotate` ``. * * **Initial value**: `0deg` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :--: | :-: | * | No | **26** | No | n/a | No | * * @see https://developer.mozilla.org/docs/Web/CSS/image-orientation */ export type ImageOrientationProperty = Globals | "flip" | "from-image" | StringHack;