UNPKG

599 BTypeScriptView Raw
1import type { ICoordinates } from "../../Core/Interfaces/ICoordinates";
2import type { IManualParticle } from "../Interfaces/IManualParticle";
3import type { IOptionLoader } from "../Interfaces/IOptionLoader";
4import type { IParticlesOptions } from "../Interfaces/Particles/IParticlesOptions";
5import type { RecursivePartial } from "../../Types/RecursivePartial";
6export declare class ManualParticle implements IManualParticle, IOptionLoader<IManualParticle> {
7 options?: RecursivePartial<IParticlesOptions>;
8 position?: ICoordinates;
9 load(data?: RecursivePartial<IManualParticle>): void;
10}