import type { IColor, RecursivePartial } from "@tsparticles/engine"; import type { IBackgroundMaskCover } from "./IBackgroundMaskCover.js"; export interface IBackgroundMask { composite: GlobalCompositeOperation; cover: RecursivePartial | IColor | string; enable: boolean; }