import { Globals, StringHack } 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` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :-----: | :----------: | :----------: | * | **69** | **39** | **11** | **12** _-x-_ | **10** _-x-_ | * | | | 9 _-x-_ | | | * * @see https://developer.mozilla.org/docs/Web/CSS/scroll-snap-type */ export type ScrollSnapTypeProperty = Globals | "none" | StringHack;