@tsparticles/interaction-particles-links
Version:
tsParticles links particles interaction
18 lines (17 loc) • 476 B
TypeScript
import type { ILinksShadow } from "./ILinksShadow.js";
import type { ILinksTriangle } from "./ILinksTriangle.js";
import type { IOptionsColor } from "@tsparticles/engine";
export interface ILinks {
blink: boolean;
color: string | IOptionsColor;
consent: boolean;
distance: number;
enable: boolean;
frequency: number;
id?: string;
opacity: number;
shadow: ILinksShadow;
triangles: ILinksTriangle;
warp: boolean;
width: number;
}