@tsparticles/plugin-export-video
Version:
tsParticles export video plugin
20 lines (19 loc) • 568 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ExportVideoPlugin = void 0;
const ExportVideoInstance_js_1 = require("./ExportVideoInstance.js");
class ExportVideoPlugin {
constructor(engine) {
this.id = "export-video";
this._engine = engine;
}
getPlugin(container) {
return Promise.resolve(new ExportVideoInstance_js_1.ExportVideoInstance(container, this._engine));
}
loadOptions() {
}
needsPlugin() {
return true;
}
}
exports.ExportVideoPlugin = ExportVideoPlugin;