UNPKG

1.05 kBTypeScriptView Raw
1import { Circle, CircleWarp, Constants, Point, Rectangle } from "./Utils";
2import type { IOptions } from "./Options/Interfaces/IOptions";
3import type { RecursivePartial } from "./Types";
4import type { IParticle } from "./Core/Interfaces";
5import { Main } from "./main";
6declare const tsParticles: Main;
7declare const particlesJS: import("./pjs").IParticlesJS, pJSDom: import("./Core/Container").Container[];
8export * from "./Core/Particle/Vector";
9export * from "./Core/Container";
10export * from "./Enums";
11export { Circle, CircleWarp, Constants, Point, Rectangle, Main };
12export * from "./Utils/CanvasUtils";
13export * from "./Utils/ColorUtils";
14export * from "./Utils/NumberUtils";
15export * from "./Utils/Utils";
16export * from "./Types";
17export * from "./Core/Interfaces";
18export * from "./Core/Particle";
19export * from "./Core/ExternalInteractorBase";
20export * from "./Core/ParticlesInteractorBase";
21export { tsParticles, particlesJS, pJSDom };
22export { IOptions };
23export { IParticle };
24export declare type ISourceOptions = RecursivePartial<IOptions>;