import { Globals } from "./index"; /** * The `-webkit-overflow-scrolling` CSS property controls whether or not touch devices use momentum-based scrolling for a given element. * * **Initial value**: `auto` */ export type WebkitOverflowScrollingProperty = Globals | "auto" | "touch";