UNPKG

@tsparticles/plugin-export-image

Version:

tsParticles export image plugin

11 lines (10 loc) 405 B
import type { Container, Engine, IPlugin } from "@tsparticles/engine"; import { ExportImageInstance } from "./ExportImageInstance.js"; export declare class ExportImagePlugin implements IPlugin { readonly id: string; private readonly _engine; constructor(engine: Engine); getPlugin(container: Container): Promise<ExportImageInstance>; loadOptions(): void; needsPlugin(): boolean; }