import { Globals } from "./index"; /** * The **`-moz-window-dragging`** CSS property specifies whether a window is draggable or not. It only works in Chrome code, and only on Mac OS X. * * **Initial value**: `drag` */ export type MozWindowDraggingProperty = Globals | "drag" | "no-drag";