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