UNPKG

tsparticles

Version:

Porting of the abandoned Vincent Garreau's particles.js, converted in TypeScript. Added many new cool features and various bug fixes.

11 lines (10 loc) 370 B
import type { IBubble } from "../../../../Interfaces/Options/Interactivity/Modes/IBubble"; import type { RecursivePartial } from "../../../../Types/RecursivePartial"; export declare class Bubble implements IBubble { distance: number; duration: number; opacity: number; size: number; constructor(); load(data?: RecursivePartial<IBubble>): void; }