import { Globals } from "./index"; /** * The **`backface-visibility`** CSS property sets whether the back face of an element is visible when turned towards the user. * * **Initial value**: `visible` * * | Chrome | Firefox | Safari | Edge | IE | * | :----------: | :------: | :----: | :----: | :----: | * | **12** _-x-_ | **16** | Yes | **12** | **10** | * | | 10 _-x-_ | | | | * * @see https://developer.mozilla.org/docs/Web/CSS/backface-visibility */ export type BackfaceVisibilityProperty = Globals | "hidden" | "visible";