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) • 350 B
TypeScript
import type { RecursivePartial } from "../../../Types/RecursivePartial";
import type { IRandomSize } from "../../../Interfaces/Options/Particles/IRandomSize";
export declare class RandomSize implements IRandomSize {
enable: boolean;
minimumValue: number;
constructor();
load(data?: RecursivePartial<IRandomSize> | undefined): void;
}