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) • 473 B
TypeScript
import type { IOpacityAnimation } from "../../../Interfaces/Options/Particles/IOpacityAnimation";
import type { RecursivePartial } from "../../../Types/RecursivePartial";
export declare class OpacityAnimation implements IOpacityAnimation {
get opacity_min(): number;
set opacity_min(value: number);
enable: boolean;
minimumValue: number;
speed: number;
sync: boolean;
constructor();
load(data?: RecursivePartial<IOpacityAnimation>): void;
}