import { Globals, StringHack } from "./index"; /** * The **`touch-action`** CSS property sets how a region can be manipulated by a touchscreen user (for example, by zooming features built into the browser). * * **Initial value**: `auto` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :------: | * | **36** | **52** | No | **12** | **11** | * | | | | | 10 _-x-_ | * * @see https://developer.mozilla.org/docs/Web/CSS/touch-action */ export type TouchActionProperty = | Globals | "-ms-manipulation" | "-ms-pinch-zoom" | "auto" | "manipulation" | "none" | "pan-down" | "pan-left" | "pan-right" | "pan-up" | "pan-x" | "pan-y" | "pinch-zoom" | StringHack;