UNPKG

@tsparticles/plugin-polygon-mask

Version:

tsParticles polygon mask plugin

10 lines (9 loc) 496 B
import { type IOptionLoader, type RecursivePartial } from "@tsparticles/engine"; import type { IPolygonMaskMove } from "../Interfaces/IPolygonMaskMove.js"; import { PolygonMaskMoveType } from "../../Enums/PolygonMaskMoveType.js"; export declare class PolygonMaskMove implements IPolygonMaskMove, IOptionLoader<IPolygonMaskMove> { radius: number; type: PolygonMaskMoveType | keyof typeof PolygonMaskMoveType; constructor(); load(data?: RecursivePartial<IPolygonMaskMove>): void; }