@tsparticles/plugin-emitters-shape-canvas
Version:
tsParticles emitters shape canvas plugin
12 lines (11 loc) • 455 B
TypeScript
import { type IOptionLoader, type RecursivePartial } from "@tsparticles/engine";
import type { ITextFontOptions } from "../Interfaces/ITextFontOptions.js";
export declare class TextFontOptions implements ITextFontOptions, IOptionLoader<ITextFontOptions> {
family: string;
size: string | number;
style: string;
variant: string;
weight: string;
constructor();
load(data?: RecursivePartial<ITextFontOptions> | undefined): void;
}