UNPKG

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