@remotion/renderer
Version:
Render Remotion videos using Node.js or Bun
15 lines (14 loc) • 397 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.serializeCommand = void 0;
const make_nonce_1 = require("./make-nonce");
const serializeCommand = (command, params) => {
return {
nonce: (0, make_nonce_1.makeNonce)(),
payload: {
type: command,
params,
},
};
};
exports.serializeCommand = serializeCommand;