import { StringHack, Globals, BgSize } from "./index"; /** * The **`mask-size`** CSS property specifies the sizes of the mask images. The size of the image can be fully or partially constrained in order to preserve its intrinsic ratio. * * **Initial value**: `auto` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :-: | * | n/a | **53** | n/a | **17** | n/a | * * @see https://developer.mozilla.org/docs/Web/CSS/mask-size */ export type MaskSizeProperty = Globals | BgSize | StringHack;