remotion
Version:
Render videos in React
13 lines (12 loc) • 372 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.setBundleOutDir = exports.getBundleOutDir = void 0;
let bundleOutDir = null;
const getBundleOutDir = () => {
return bundleOutDir;
};
exports.getBundleOutDir = getBundleOutDir;
const setBundleOutDir = (path) => {
bundleOutDir = path;
};
exports.setBundleOutDir = setBundleOutDir;