@remotion/cli
Version:
Control Remotion features using the `npx remotion` command
13 lines (12 loc) • 356 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.getMetadata = exports.setMetadata = void 0;
let specifiedMetadata;
const setMetadata = (metadata) => {
specifiedMetadata = metadata;
};
exports.setMetadata = setMetadata;
const getMetadata = () => {
return specifiedMetadata;
};
exports.getMetadata = getMetadata;