tsparticles
Version:
Porting of the abandoned Vincent Garreau's particles.js, converted in TypeScript. Added many new cool features and various bug fixes.
13 lines (12 loc) • 474 B
TypeScript
import type { IBackground } from "../../../Interfaces/Options/Background/IBackground";
import type { RecursivePartial } from "../../../Types/RecursivePartial";
import type { IColor } from "../../../Interfaces/Options/Particles/IColor";
export declare class Background implements IBackground {
color?: IColor;
image?: string;
position?: string;
repeat?: string;
size?: string;
opacity?: number;
load(data?: RecursivePartial<IBackground>): void;
}