UNPKG

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