@tsparticles/plugin-export-video
Version:
tsParticles export video plugin
10 lines (9 loc) • 453 B
TypeScript
import { type Container, type Engine, type ExportResult, type IContainerPlugin } from "@tsparticles/engine";
export declare class ExportVideoInstance implements IContainerPlugin {
private readonly _container;
private readonly _engine;
private readonly _supportedTypes;
constructor(container: Container, engine: Engine);
export(type: string, data: Record<string, unknown>): Promise<ExportResult>;
private readonly _exportVideo;
}