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