import { Globals, StringHack } from "./index"; /** * The **`mask-border-repeat`** CSS property sets how the edge regions of a source image are adjusted to fit the dimensions of an element's mask border. * * **Initial value**: `stretch` */ export type MaskBorderRepeatProperty = Globals | "repeat" | "round" | "space" | "stretch" | StringHack;