UNPKG

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.

36 lines (35 loc) 1.02 kB
import { GrabLinks } from "./GrabLinks"; import type { IGrab } from "../../../Interfaces/Interactivity/Modes/IGrab"; import type { IOptionLoader } from "../../../Interfaces/IOptionLoader"; import type { RecursivePartial } from "../../../../Types"; /** * @category Options */ export declare class Grab implements IGrab, IOptionLoader<IGrab> { /** * * @deprecated this property is obsolete, please use the new links */ get line_linked(): GrabLinks; /** * * @deprecated this property is obsolete, please use the new links * @param value */ set line_linked(value: GrabLinks); /** * * @deprecated this property is obsolete, please use the new links */ get lineLinked(): GrabLinks; /** * * @deprecated this property is obsolete, please use the new links * @param value */ set lineLinked(value: GrabLinks); distance: number; links: GrabLinks; constructor(); load(data?: RecursivePartial<IGrab>): void; }