tsparticles
Version:
Porting of the abandoned Vincent Garreau's particles.js, converted in TypeScript. Added many new cool features and various bug fixes.
10 lines (9 loc) • 368 B
TypeScript
import type { IOptionLoader } from "../IOptionLoader";
import type { IPolygonMaskDrawStroke } from "./IPolygonMaskDrawStroke";
import type { IColor } from "../Particles/IColor";
export interface IPolygonMaskDraw extends IOptionLoader<IPolygonMaskDraw> {
enable: boolean;
lineColor: string | IColor;
lineWidth: number;
stroke: IPolygonMaskDrawStroke;
}