@tsparticles/plugin-canvas-mask
Version:
tsParticles canvas mask plugin
12 lines (11 loc) • 449 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 | number;
constructor();
load(data?: RecursivePartial<IFontTextMask> | undefined): void;
}