party-js
Version:
A JavaScript library to brighten up your user's site experience with visual effects!
21 lines (20 loc) • 740 B
TypeScript
import { Scene } from "./scene";
import { Lazy } from "./util";
export * from "./components";
export * from "./templates";
export * from "./systems/shapes";
export * from "./systems/modules";
export declare const scene: Lazy<Scene>;
export { settings } from "./settings";
export { Particle } from "./particles/particle";
export { Emitter } from "./particles/emitter";
export * as variation from "./systems/variation";
export * as sources from "./systems/sources";
export * as random from "./systems/random";
export * as math from "./systems/math";
export * as util from "./util";
/**
* Forces the initialization of the otherwise lazy scene.
*/
export declare function forceInit(): void;
export * as default from "./";