import { Globals } from "./index"; /** * The **`resize`** CSS property sets whether an element is resizable, and if so, in which directions. * * **Initial value**: `none` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :--: | :-: | * | **1** | | **3** | No | No | * * @see https://developer.mozilla.org/docs/Web/CSS/resize */ export type ResizeProperty = Globals | "block" | "both" | "horizontal" | "inline" | "none" | "vertical";