Files
story-studio/remotion/node_modules/@remotion/cli/dist/config/entry-point.js
2026-02-21 10:33:18 +01:00

13 lines
346 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.getEntryPoint = exports.setEntryPoint = void 0;
let entryPoint = null;
const setEntryPoint = (ep) => {
entryPoint = ep;
};
exports.setEntryPoint = setEntryPoint;
const getEntryPoint = () => {
return entryPoint;
};
exports.getEntryPoint = getEntryPoint;