@tsparticles/plugin-canvas-mask
Version:
tsParticles canvas mask plugin
11 lines (10 loc) • 406 B
TypeScript
import { type IOptionLoader, type RecursivePartial } from "@tsparticles/engine";
import type { IFontTextMask } from "../Interfaces/IFontTextMask.js";
export declare class FontTextMask implements IFontTextMask, IOptionLoader<IFontTextMask> {
family: string;
size: string | number;
style: string;
variant: string;
weight: string;
load(data?: RecursivePartial<IFontTextMask>): void;
}