UNPKG

480 BTypeScriptView Raw
1import { Particle } from "../../Core/Particle";
2import type { Container } from "../../Core/Container";
3import { IParticlesInteractor } from "../../Core/Interfaces/IParticlesInteractor";
4import { IParticle } from "../../Core/Interfaces/IParticle";
5export declare class Linker implements IParticlesInteractor {
6 private readonly container;
7 constructor(container: Container);
8 isEnabled(particle: Particle): boolean;
9 reset(): void;
10 interact(p1: IParticle): void;
11}