import { Globals, StringHack } from "./index"; /** * The non-standard **`zoom`** CSS property can be used to control the magnification level of an element. `transform: scale()` should be used instead of this property, if possible. However, unlike CSS Transforms, `zoom` affects the layout size of the element. * * **Initial value**: `normal` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :-----: | * | Yes | No | **4** | **12** | **5.5** | * * @see https://developer.mozilla.org/docs/Web/CSS/zoom */ export type ZoomProperty = Globals | "normal" | "reset" | StringHack | number;