import { Globals } from "./index"; /** * The **`pointer-events`** CSS property sets under what circumstances (if any) a particular graphic element can become the target of mouse events. * * **Initial value**: `auto` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :----: | * | **1** | **1.5** | **3** | **12** | **11** | * * @see https://developer.mozilla.org/docs/Web/CSS/pointer-events */ export type PointerEventsProperty = Globals | "all" | "auto" | "fill" | "inherit" | "none" | "painted" | "stroke" | "visible" | "visibleFill" | "visiblePainted" | "visibleStroke";