import { StringHack, Globals, Position } from "./index"; /** * The **`perspective-origin`** CSS property determines the position at which the viewer is looking. It is used as the _vanishing point_ by the `perspective` property. * * **Initial value**: `50% 50%` * * | Chrome | Firefox | Safari | Edge | IE | * | :----------: | :------: | :----: | :----: | :----: | * | **12** _-x-_ | **16** | Yes | **12** | **10** | * | | 10 _-x-_ | | | | * * @see https://developer.mozilla.org/docs/Web/CSS/perspective-origin */ export type PerspectiveOriginProperty = Globals | Position;