@tsparticles/plugin-export-video
Version:
tsParticles export video plugin
16 lines (15 loc) • 384 B
JavaScript
import { ExportVideoInstance } from "./ExportVideoInstance.js";
export class ExportVideoPlugin {
constructor(engine) {
this.id = "export-video";
this._engine = engine;
}
getPlugin(container) {
return Promise.resolve(new ExportVideoInstance(container, this._engine));
}
loadOptions() {
}
needsPlugin() {
return true;
}
}