tsparticles
Version:
Porting of the abandoned Vincent Garreau's particles.js, converted in TypeScript. Added many new cool features and various bug fixes.
14 lines (13 loc) • 622 B
TypeScript
import type { IOpacity } from "../../../Interfaces/Options/Particles/IOpacity";
import type { IOpacityAnimation } from "../../../Interfaces/Options/Particles/IOpacityAnimation";
import type { RecursivePartial } from "../../../Types/RecursivePartial";
import type { IRandomOpacity } from "../../../Interfaces/Options/Particles/IRandomOpacity";
export declare class Opacity implements IOpacity {
get anim(): IOpacityAnimation;
set anim(value: IOpacityAnimation);
animation: IOpacityAnimation;
random: IRandomOpacity;
value: number;
constructor();
load(data?: RecursivePartial<IOpacity>): void;
}