import { Globals, CompositeStyle, StringHack } from "./index"; /** * The **`-webkit-mask-composite`** property specifies the manner in which multiple mask images applied to the same element are composited with one another. Mask images are composited in the opposite order that they are declared with the `-webkit-mask-image` property. * * **Initial value**: `source-over` */ export type WebkitMaskCompositeProperty = Globals | CompositeStyle | StringHack;