UNPKG

@tsparticles/updater-size

Version:

tsParticles particles size updater

8 lines (7 loc) 324 B
import { type IDelta, type IParticleUpdater, type Particle } from "@tsparticles/engine"; export declare class SizeUpdater implements IParticleUpdater { init(particle: Particle): void; isEnabled(particle: Particle): boolean; reset(particle: Particle): void; update(particle: Particle, delta: IDelta): void; }