import { Globals, GeometryBox, StringHack } from "./index"; /** * The **`mask-origin`** CSS property sets the origin of a mask. * * **Initial value**: `border-box` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :--: | :-: | * | Yes | **53** | Yes | n/a | n/a | * * @see https://developer.mozilla.org/docs/Web/CSS/mask-origin */ export type MaskOriginProperty = Globals | GeometryBox | StringHack;