import { Globals } from "./index"; /** * The `-webkit-mask-repeat-x` property specifies whether and how a mask image is repeated (tiled) horizontally. * * **Initial value**: `repeat` */ export type WebkitMaskRepeatXProperty = Globals | "no-repeat" | "repeat" | "round" | "space";