tsparticles
Version:
Porting of the abandoned Vincent Garreau's particles.js, converted in TypeScript. Added many new cool features and various bug fixes.
10 lines (9 loc) • 469 B
TypeScript
import type { IColor } from "../../../Interfaces/Options/Particles/IColor";
import type { RecursivePartial } from "../../../Types/RecursivePartial";
import type { IBackgroundMaskCover } from "../../../Interfaces/Options/BackgroundMask/IBackgroundMaskCover";
export declare class BackgroundMaskCover implements IBackgroundMaskCover {
color: IColor;
opacity: number;
constructor();
load(data?: RecursivePartial<IBackgroundMaskCover> | undefined): void;
}