UNPKG

tsparticles

Version:

Easily create highly customizable particle animations and use them as animated backgrounds for your website. Ready to use components available also for React, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, Riot.js, Inferno.

32 lines (31 loc) 1.72 kB
import { Main } from "./main"; import * as CanvasUtils from "./Utils/CanvasUtils"; import * as ColorUtils from "./Utils/ColorUtils"; import * as NumberUtils from "./Utils/NumberUtils"; import * as Utils from "./Utils/Utils"; import { Circle, CircleWarp, Constants, Point, Rectangle } from "./Utils"; import type { IOptions as ISlimOptions } from "./Options/Interfaces/IOptions"; import type { IAbsorberOptions } from "./Plugins/Absorbers/Options/Interfaces/IAbsorberOptions"; import type { IEmitterOptions } from "./Plugins/Emitters/Options/Interfaces/IEmitterOptions"; import type { IPolygonMaskOptions } from "./Plugins/PolygonMask/Options/Interfaces/IPolygonMaskOptions"; import type { RecursivePartial } from "./Types"; import type { IParticle } from "./Core/Interfaces"; import { loadFull } from "./full"; declare const tsParticles: Main; declare const particlesJS: import("./pjs").IParticlesJS, pJSDom: import("./Core/Container").Container[]; export * from "./Core/Particle/Vector"; export * from "./Core/Container"; export * from "./Enums"; export * from "./Plugins/Absorbers/Enums"; export * from "./Plugins/Emitters/Enums"; export * from "./Plugins/PolygonMask/Enums"; export { CanvasUtils, Circle, CircleWarp, ColorUtils, Constants, NumberUtils, Point, Rectangle, Utils, Main, loadFull }; export * from "./Types"; export * from "./Core/Interfaces"; export * from "./Core/Particle"; export * from "./Core/ExternalInteractorBase"; export * from "./Core/ParticlesInteractorBase"; export { particlesJS, pJSDom, tsParticles }; export declare type IOptions = ISlimOptions & IAbsorberOptions & IEmitterOptions & IPolygonMaskOptions; export { IParticle }; export declare type ISourceOptions = RecursivePartial<IOptions>;