import { Globals } from "./index"; /** * The **`scroll-snap-type`** CSS property sets how strictly snap points are enforced on the scroll container in case there is one. * * **Initial value**: `none` */ export type MsScrollSnapTypeProperty = Globals | "mandatory" | "none" | "proximity";