UNPKG

@tsparticles/move-base

Version:
11 lines (10 loc) 330 B
import type { IParticleGravity } from "./IParticleGravity.js"; import type { IParticleSpin } from "./IParticleSpin.js"; import type { Particle } from "@tsparticles/engine"; export type MoveParticle = Particle & { gravity?: IParticleGravity; retina: { spinAcceleration?: number; }; spin?: IParticleSpin; };