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.
16 lines (15 loc) • 631 B
TypeScript
import type { IConnect } from "../../../Interfaces/Interactivity/Modes/IConnect";
import { ConnectLinks } from "./ConnectLinks";
import type { RecursivePartial } from "../../../../Types";
import type { IOptionLoader } from "../../../Interfaces/IOptionLoader";
export declare class Connect implements IConnect, IOptionLoader<IConnect> {
get line_linked(): ConnectLinks;
set line_linked(value: ConnectLinks);
get lineLinked(): ConnectLinks;
set lineLinked(value: ConnectLinks);
distance: number;
links: ConnectLinks;
radius: number;
constructor();
load(data?: RecursivePartial<IConnect>): void;
}