import { Globals } from "./index"; /** * The **`transform-style`** CSS property sets whether children of an element are positioned in the 3D space or are flattened in the plane of the element. * * **Initial value**: `flat` * * | Chrome | Firefox | Safari | Edge | IE | * | :----------: | :------: | :----: | :----: | :-: | * | **12** _-x-_ | **16** | Yes | **12** | No | * | | 10 _-x-_ | | | | * * @see https://developer.mozilla.org/docs/Web/CSS/transform-style */ export type TransformStyleProperty = Globals | "flat" | "preserve-3d";