UNPKG

972 BJavaScriptView Raw
1import { initPjs } from "./pjs";
2import { Main } from "./main";
3import { Circle, CircleWarp, Constants, Point, Rectangle } from "./Utils";
4import { loadFull } from "./full";
5const tsParticles = new Main();
6tsParticles.init();
7loadFull(tsParticles);
8const { particlesJS, pJSDom } = initPjs(tsParticles);
9export * from "./Core/Particle/Vector";
10export * from "./Core/Container";
11export * from "./Enums";
12export * from "./Plugins/Absorbers/Enums";
13export * from "./Plugins/Emitters/Enums";
14export * from "./Plugins/PolygonMask/Enums";
15export { Circle, CircleWarp, Constants, Point, Rectangle, Main };
16export * from "./Utils/CanvasUtils";
17export * from "./Utils/ColorUtils";
18export * from "./Utils/NumberUtils";
19export * from "./Utils/Utils";
20export * from "./Types";
21export * from "./Core/Interfaces";
22export * from "./Core/Particle";
23export * from "./Core/ExternalInteractorBase";
24export * from "./Core/ParticlesInteractorBase";
25export { particlesJS, pJSDom, tsParticles };