tsparticles
Version:
Porting of the abandoned Vincent Garreau's particles.js, converted in TypeScript. Added many new cool features and various bug fixes.
14 lines (13 loc) • 409 B
TypeScript
import type { IOptionLoader } from "../IOptionLoader";
import type { ILineLinkedShadow } from "./ILineLinkedShadow";
import type { IColor } from "./IColor";
export interface ILineLinked extends IOptionLoader<ILineLinked> {
blink: boolean;
color: string | IColor;
consent: boolean;
distance: number;
enable: boolean;
opacity: number;
shadow: ILineLinkedShadow;
width: number;
}