import type { IParticlesOptions, RecursivePartial } from "@tsparticles/engine"; import type { ITrailColorCoords } from "./ITrailColorCoords.js"; export interface ITrail { colorCoords?: ITrailColorCoords; delay: number; particles?: RecursivePartial; pauseOnStop: boolean; quantity: number; }