UNPKG

tsparticles

Version:

Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for React, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, Riot.js, Inferno.

18 lines (17 loc) 539 B
import type { IColor } from "../../../../Core"; import type { IPolygonMaskDrawStroke } from "./IPolygonMaskDrawStroke"; /** * @category Polygon Mask Plugin */ export interface IPolygonMaskDraw { enable: boolean; /** * @deprecated the property lineColor is deprecated, please use the new stroke.color property */ lineColor: string | IColor; /** * @deprecated the property lineColor is deprecated, please use the new stroke.width property */ lineWidth: number; stroke: IPolygonMaskDrawStroke; }