import type { IRoundedPolygonShape } from "./IRoundedPolygonShape.js"; import type { Particle } from "@tsparticles/engine"; export type RoundedParticle = Particle & { borderRadius?: number; shapeData?: IRoundedPolygonShape; };