UNPKG

@tsparticles/plugin-emitters-shape-canvas

Version:

tsParticles emitters shape canvas plugin

13 lines (12 loc) 266 B
import type { IRgba } from "@tsparticles/engine"; export interface CanvasPixelData { height: number; pixels: IRgba[][]; width: number; } export interface TextLineData { height: number; measure: TextMetrics; text: string; width: number; }