UNPKG

@tsparticles/plugin-export-video

Version:

tsParticles export video plugin

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