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