UNPKG

@tsparticles/plugin-polygon-mask

Version:

tsParticles polygon mask plugin

10 lines (9 loc) 508 B
import { type IOptionLoader, type PluginManager, type RecursivePartial } from "@tsparticles/engine"; import type { IPolygonMaskDraw } from "../Interfaces/IPolygonMaskDraw.js"; import { PolygonMaskDrawStroke } from "./PolygonMaskDrawStroke.js"; export declare class PolygonMaskDraw implements IPolygonMaskDraw, IOptionLoader<IPolygonMaskDraw> { enable: boolean; stroke: PolygonMaskDrawStroke; constructor(pluginManager: PluginManager); load(data?: RecursivePartial<IPolygonMaskDraw>): void; }