import { StringHack, Globals, Position } from "./index"; /** * The **`mask-position`** CSS property sets the initial position, relative to the mask position layer set by `mask-origin`, for each defined mask image. * * **Initial value**: `center` * * | Chrome | Firefox | Safari | Edge | IE | * | :---------: | :-----: | :---------: | :----: | :-: | * | **1** _-x-_ | **53** | **4** _-x-_ | **18** | n/a | * * @see https://developer.mozilla.org/docs/Web/CSS/mask-position */ export type MaskPositionProperty = Globals | Position | StringHack;