@tsparticles/interaction-particles-attract 3.0.0-beta.1 → 3.0.0-beta.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -4,7 +4,7 @@
4
4
  * Demo / Generator : https://particles.js.org/
5
5
  * GitHub : https://www.github.com/matteobruni/tsparticles
6
6
  * How to use? : Check the GitHub README
7
- * v3.0.0-beta.1
7
+ * v3.0.0-beta.3
8
8
  */
9
9
  (function webpackUniversalModuleDefinition(root, factory) {
10
10
  if(typeof exports === 'object' && typeof module === 'object')
@@ -1 +1 @@
1
- /*! tsParticles Attract Particles Interaction v3.0.0-beta.1 by Matteo Bruni */
1
+ /*! tsParticles Attract Particles Interaction v3.0.0-beta.3 by Matteo Bruni */
@@ -1,9 +1,9 @@
1
- import { type Container, type IParticle, type Particle, ParticlesInteractorBase } from "@tsparticles/engine";
1
+ import { type Container, type Particle, ParticlesInteractorBase } from "@tsparticles/engine";
2
2
  export declare class Attractor extends ParticlesInteractorBase {
3
3
  constructor(container: Container);
4
4
  clear(): void;
5
5
  init(): void;
6
- interact(p1: IParticle): Promise<void>;
6
+ interact(p1: Particle): Promise<void>;
7
7
  isEnabled(particle: Particle): boolean;
8
8
  reset(): void;
9
9
  }