tsparticles
Version:
Porting of the abandoned Vincent Garreau's particles.js, converted in TypeScript. Added many new cool features and various bug fixes.
11 lines (10 loc) • 455 B
TypeScript
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 LineLinkedShadow implements ILineLinkedShadow {
blur: number;
color: IColor;
enable: boolean;
constructor();
load(data?: RecursivePartial<ILineLinkedShadow>): void;
}