import type { BackgroundDrawContext, IDelta, IOptionsColor } from "@tsparticles/engine"; export interface IBackgroundMaskCover { color?: string | IOptionsColor; draw?: (context: BackgroundDrawContext, delta: IDelta) => void; element?: string | HTMLCanvasElement | OffscreenCanvas | HTMLVideoElement | HTMLImageElement; image?: string; opacity: number; }