tsparticles
Version:
Easily create highly customizable particle, confetti and fireworks 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.
14 lines (13 loc) • 542 B
TypeScript
import { Engine } from "./engine";
import type { IOptions } from "./Options/Interfaces/IOptions";
import type { RecursivePartial } from "./Types";
declare const tsParticles: Engine;
declare const particlesJS: import("./pjs").IParticlesJS, pJSDom: import("./Core").Container[];
export * from "./Core";
export * from "./Enums";
export { Engine, Engine as Main };
export * from "./Utils";
export * from "./Types";
export { tsParticles, particlesJS, pJSDom };
export { IOptions };
export declare type ISourceOptions = RecursivePartial<IOptions>;