import { Globals } from "./index"; /** * The **`-ms-content-zoom-snap-type`** CSS property is a Microsoft extension that specifies how zooming is affected by defined snap-points. * * **Initial value**: `none` */ export type MsContentZoomSnapTypeProperty = Globals | "mandatory" | "none" | "proximity";