UNPKG

tsparticles

Version:

Porting of the abandoned Vincent Garreau's particles.js, converted in TypeScript. Added many new cool features and various bug fixes.

13 lines (12 loc) 451 B
import type { ICharacterShape } from "../../../../Interfaces/Options/Particles/Shape/ICharacterShape"; import type { RecursivePartial } from "../../../../Types/RecursivePartial"; export declare class CharacterShape implements ICharacterShape { close?: boolean; fill?: boolean; font: string; style: string; value: string | string[]; weight: string; constructor(); load(data?: RecursivePartial<ICharacterShape>): void; }