tsparticles
Version:
Porting of the abandoned Vincent Garreau's particles.js, converted in TypeScript. Added many new cool features and various bug fixes.
11 lines (10 loc) • 564 B
TypeScript
import type { IBackgroundMask } from "../../../Interfaces/Options/BackgroundMask/IBackgroundMask";
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 BackgroundMask implements IBackgroundMask {
cover: IBackgroundMaskCover | IColor;
enable: boolean;
constructor();
load(data?: RecursivePartial<IBackgroundMask>): void;
}