import { Globals } from "./index"; /** * The `**-ms-scroll-chaining**` CSS property is a Microsoft extension that specifies the scrolling behavior that occurs when a user hits the scroll limit during a manipulation. * * **Initial value**: `chained` */ export type MsScrollChainingProperty = Globals | "chained" | "none";