@tsparticles/plugin-canvas-mask
Version:
tsParticles canvas mask plugin
8 lines (7 loc) • 317 B
TypeScript
import { type IOptionLoader, type RecursivePartial } from "@tsparticles/engine";
import type { IImageMask } from "../Interfaces/IImageMask.js";
export declare class ImageMask implements IImageMask, IOptionLoader<IImageMask> {
src: string;
constructor();
load(data?: RecursivePartial<IImageMask>): void;
}