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