UNPKG

@tsparticles/shape-text

Version:
8 lines (7 loc) 393 B
import { type Container, type IShapeDrawData, type IShapeDrawer } from "@tsparticles/engine"; import type { TextParticle } from "./TextParticle.js"; export declare class TextDrawer implements IShapeDrawer<TextParticle> { draw(data: IShapeDrawData<TextParticle>): void; init(container: Container): Promise<void>; particleInit(_container: Container, particle: TextParticle): void; }