tsparticles
Version:
Porting of the abandoned Vincent Garreau's particles.js, converted in TypeScript. Added many new cool features and various bug fixes.
17 lines (16 loc) • 640 B
TypeScript
import type { ILineLinked } from "../../../Interfaces/Options/Particles/ILineLinked";
import type { ILineLinkedShadow } from "../../../Interfaces/Options/Particles/ILineLinkedShadow";
import type { RecursivePartial } from "../../../Types/RecursivePartial";
import type { IColor } from "../../../Interfaces/Options/Particles/IColor";
export declare class LineLinked implements ILineLinked {
blink: boolean;
color: IColor;
consent: boolean;
distance: number;
enable: boolean;
opacity: number;
shadow: ILineLinkedShadow;
width: number;
constructor();
load(data?: RecursivePartial<ILineLinked>): void;
}