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) • 406 B
TypeScript
import type { IStroke } from "../../../Interfaces/Options/Particles/IStroke";
import type { RecursivePartial } from "../../../Types/RecursivePartial";
import type { IColor } from "../../../Interfaces/Options/Particles/IColor";
export declare class Stroke implements IStroke {
color: IColor;
width: number;
opacity: number;
constructor();
load(data?: RecursivePartial<IStroke>): void;
}