@tsparticles/plugin-polygon-mask
Version:
tsParticles polygon mask plugin
11 lines (10 loc) • 513 B
TypeScript
import { type IOptionLoader, OptionsColor, type PluginManager, type RecursivePartial } from "@tsparticles/engine";
import type { IPolygonMaskDrawStroke } from "../Interfaces/IPolygonMaskDrawStroke.js";
export declare class PolygonMaskDrawStroke implements IPolygonMaskDrawStroke, IOptionLoader<IPolygonMaskDrawStroke> {
#private;
color: OptionsColor;
opacity: number;
width: number;
constructor(pluginManager: PluginManager);
load(data?: RecursivePartial<IPolygonMaskDrawStroke>): void;
}