UNPKG

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) 432 B
import type { IPolygonMaskMove } from "../../../Interfaces/Options/PolygonMask/IPolygonMaskMove"; import { PolygonMaskMoveType } from "../../../Enums/PolygonMaskMoveType"; import type { RecursivePartial } from "../../../Types/RecursivePartial"; export declare class Move implements IPolygonMaskMove { radius: number; type: PolygonMaskMoveType; constructor(); load(data?: RecursivePartial<IPolygonMaskMove>): void; }