import { Globals } from "./index"; /** * The **`mask-type`** CSS property sets whether an SVG `` element is used as a _luminance_ or an _alpha_ mask. It applies to the `` element itself. * * **Initial value**: `luminance` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :--: | :-: | * | **24** | **35** | n/a | n/a | n/a | * * @see https://developer.mozilla.org/docs/Web/CSS/mask-type */ export type MaskTypeProperty = Globals | "alpha" | "luminance";