import { Globals, RepeatStyle, StringHack } from "./index"; /** * The **`mask-repeat`** CSS property sets how mask images are repeated. A mask image can be repeated along the horizontal axis, the vertical axis, both axes, or not repeated at all. * * **Initial value**: `no-repeat` * * | Chrome | Firefox | Safari | Edge | IE | * | :---------: | :-----: | :---------: | :----: | :-: | * | **1** _-x-_ | **53** | **4** _-x-_ | **18** | n/a | * * @see https://developer.mozilla.org/docs/Web/CSS/mask-repeat */ export type MaskRepeatProperty = Globals | RepeatStyle | StringHack;